Skip to content

Commit

Permalink
generate proxies with Java 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
brettwooldridge committed May 8, 2020
1 parent 29988f2 commit ffd528d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions osx-toolchains.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
<toolchain>
<type>paths</type>
<provides>
<!-- Defines the folders to search for binaries of the "foo-bar" toolset -->
<id>javac</id>
<id>java</id>
</provides>
<configuration>
<paths>
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>3.4.5-SNAPSHOT</version>
<version>3.4.5</version>
<packaging>bundle</packaging>

<name>HikariCP</name>
Expand All @@ -48,7 +48,7 @@
<connection>scm:git:[email protected]:brettwooldridge/HikariCP.git</connection>
<developerConnection>scm:git:[email protected]:brettwooldridge/HikariCP.git</developerConnection>
<url>[email protected]:brettwooldridge/HikariCP.git</url>
<tag>HEAD</tag>
<tag>HikariCP-3.4.5</tag>
</scm>

<licenses>
Expand Down Expand Up @@ -283,7 +283,7 @@
<configuration>
<toolchains>
<paths>
<id>javac</id>
<id>java</id>
</paths>
</toolchains>
</configuration>
Expand Down Expand Up @@ -616,9 +616,9 @@
<copy todir="${java11.build.outputDirectory}">
<fileset dir="${project.build.outputDirectory}" />
</copy>
<property name="classpath" value="${org.hdrhistogram:HdrHistogram:jar}: ${org.latencyutils:LatencyUtils:jar}:${org.hibernate.javax.persistence:hibernate-jpa:jar}: ${org.hibernate.common:hibernate-commons-annotations:jar}:${antlr:antlr:jar}: ${org.jboss:jandex:jar}:${com.fasterxml:classmate:jar}:${dom4j:dom4j:jar}" />
<property name="classpath" value="${org.hdrhistogram:HdrHistogram:jar}: ${org.latencyutils:LatencyUtils:jar}:${org.hibernate.javax.persistence:hibernate-jpa:jar}: ${org.hibernate.common:hibernate-commons-annotations:jar}:${antlr:antlr:jar}: ${org.jboss:jandex:jar}:${com.fasterxml:classmate:jar}:${dom4j:dom4j:jar}" />
"
<property name="modulepath" value="${org.slf4j:slf4j-api:jar}: ${org.javassist:javassist:jar}:${io.micrometer:micrometer-core:jar}: ${org.hibernate:hibernate-core:jar}:${io.dropwizard.metrics:metrics-core:jar}: ${io.dropwizard.metrics:metrics-healthchecks:jar}:${io.prometheus:simpleclient:jar}" />
<property name="modulepath" value="${org.slf4j:slf4j-api:jar}: ${org.javassist:javassist:jar}:${io.micrometer:micrometer-core:jar}: ${org.hibernate:hibernate-core:jar}:${io.dropwizard.metrics:metrics-core:jar}: ${io.dropwizard.metrics:metrics-healthchecks:jar}:${io.prometheus:simpleclient:jar}" />
<javac srcdir="${java11.sourceDirectory}" destdir="${java11.build.outputDirectory}" classpath="${classpath}" modulepath="${modulepath}" includeantruntime="false" />
</target>
</configuration>
Expand Down

0 comments on commit ffd528d

Please sign in to comment.