Skip to content

Commit

Permalink
trying to fix ci issue take #1
Browse files Browse the repository at this point in the history
  • Loading branch information
Gray Watson committed Dec 4, 2018
1 parent 2d506d6 commit d1ea306
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@
<outputFile>src/main/java/com/j256/ormlite/misc/VersionUtils.java</outputFile>
<regex>true</regex>
<token>(VERSION__).*(__)</token>
<value>$1${version}$2</value>
<value>$1${project.version}$2</value>
</configuration>
</plugin>
<plugin>
Expand All @@ -307,6 +307,14 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<configuration>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
Expand Down Expand Up @@ -360,9 +368,7 @@
</extensions>
</build>
<dependencies>
<!-- =================================================================== -->
<!-- provided dependencies for optional features -->
<!-- =================================================================== -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand All @@ -387,9 +393,8 @@
<version>${commons-logging-version}</version>
<scope>provided</scope>
</dependency>
<!-- =================================================================== -->

<!-- test dependencies -->
<!-- =================================================================== -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down

0 comments on commit d1ea306

Please sign in to comment.