Skip to content

Commit 9a963b9

Browse files
author
threedr3am
committed
fix:tomcat-ajp jar
1 parent 79c42af commit 9a963b9

File tree

3 files changed

+30
-24
lines changed

3 files changed

+30
-24
lines changed

pom.xml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -144,30 +144,6 @@
144144
<target>8</target>
145145
</configuration>
146146
</plugin>
147-
<plugin>
148-
<groupId>org.apache.maven.plugins</groupId>
149-
<artifactId>maven-assembly-plugin</artifactId>
150-
<configuration>
151-
<archive>
152-
<manifest>
153-
<mainClass>com.threedr3am.learn.App</mainClass>
154-
</manifest>
155-
</archive>
156-
<descriptorRefs>
157-
<descriptorRef>jar-with-dependencies</descriptorRef>
158-
</descriptorRefs>
159-
<attach>false</attach>
160-
</configuration>
161-
<executions>
162-
<execution>
163-
<id>make-assembly</id>
164-
<phase>package</phase>
165-
<goals>
166-
<goal>single</goal>
167-
</goals>
168-
</execution>
169-
</executions>
170-
</plugin>
171147
</plugins>
172148
</build>
173149
</project>
11 Bytes
Binary file not shown.

tomcat/ajp-bug/pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,34 @@
1010
<modelVersion>4.0.0</modelVersion>
1111

1212
<artifactId>ajp-bug</artifactId>
13+
14+
<build>
15+
<plugins>
16+
17+
<plugin>
18+
<groupId>org.apache.maven.plugins</groupId>
19+
<artifactId>maven-assembly-plugin</artifactId>
20+
<configuration>
21+
<archive>
22+
<manifest>
23+
<mainClass>com.threedr3am.bug.tomcat.ajp.FileRead</mainClass>
24+
</manifest>
25+
</archive>
26+
<descriptorRefs>
27+
<descriptorRef>jar-with-dependencies</descriptorRef>
28+
</descriptorRefs>
29+
<attach>false</attach>
30+
</configuration>
31+
<executions>
32+
<execution>
33+
<id>make-assembly</id>
34+
<phase>package</phase>
35+
<goals>
36+
<goal>single</goal>
37+
</goals>
38+
</execution>
39+
</executions>
40+
</plugin>
41+
</plugins>
42+
</build>
1343
</project>

0 commit comments

Comments
 (0)