Skip to content

Commit

Permalink
Only shade the neo4j-jdbc-driver project and the other (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
sim51 authored and inserpio committed Jan 20, 2017
1 parent f43358a commit d188b9a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 19 deletions.
27 changes: 27 additions & 0 deletions neo4j-jdbc-driver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,31 @@
</dependency>
</dependencies>

<!-- ========= -->
<!-- = Build = -->
<!-- ========= -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.plugin.shade}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
20 changes: 1 addition & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@
<scope>test</scope>
</dependency>
</dependencies>

<!-- ========= -->
<!-- = Build = -->
<!-- ========= -->
Expand Down Expand Up @@ -278,25 +279,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.plugin.shade}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit d188b9a

Please sign in to comment.