Skip to content

Commit

Permalink
Touwolf owns version and logging to deal with a production problema.
Browse files Browse the repository at this point in the history
  • Loading branch information
gilbva committed Aug 26, 2018
1 parent 2cdad5e commit 3721d5b
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,4 @@ nbproject
/bridje-ajax/dist
/bridje-sql/derby.log
/bridje-orm/derby.log
/bridje-http/dependency-reduced-pom.xml
30 changes: 29 additions & 1 deletion bridje-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,28 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.1.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope>
<artifactSet>
<excludes>
<exclude>org.bridje:bridje-ioc</exclude>
<exclude>org.bridje:bridje-vfs</exclude>
</excludes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand All @@ -66,7 +88,13 @@
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<artifactId>netty-codec-http</artifactId>
<version>4.1.30.Touwolf-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>4.1.30.Touwolf-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.30.Final-SNAPSHOT</version>
<version>4.1.30.Touwolf-SNAPSHOT</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit 3721d5b

Please sign in to comment.