Skip to content

Commit

Permalink
fix for jitpack
Browse files Browse the repository at this point in the history
  • Loading branch information
umjammer committed Jun 12, 2019
1 parent 4dfb3b7 commit a919295
Showing 1 changed file with 25 additions and 12 deletions.
37 changes: 25 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,31 @@ TODO
</issueManagement>
<name>codavaj</name>

<profiles>
<profile>
<id>local (not on jitpack)</id>
<activation>
<property>
<name>env.JITPACK</name>
<value>!true</value>
</property>
</activation>
<properties>
<!-- for netflix rewrite -->
<jre8.home>/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre</jre8.home>
</properties>
<dependencies>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.8.0</version>
<scope>system</scope>
<systemPath>${jre8.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
</profile>
</profiles>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -170,13 +195,6 @@ TODO
<version>1.7.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>1.8.0</version>
<scope>system</scope>
<systemPath>${jre8.home}/../lib/tools.jar</systemPath>
</dependency>

<dependency>
<groupId>org.eclipse.jdt</groupId>
Expand All @@ -193,9 +211,4 @@ TODO
</dependency>
</dependencies>

<properties>
<!-- for netflix rewrite -->
<jre8.home>/Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre</jre8.home>
</properties>

</project>

0 comments on commit a919295

Please sign in to comment.