Skip to content

Commit 292ec3b

Browse files
committed
test
1 parent 0874503 commit 292ec3b

File tree

2 files changed

+35
-4
lines changed

2 files changed

+35
-4
lines changed

pom.xml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,7 @@
148148
<goal>jar-no-fork</goal>
149149
</goals>
150150
</execution>
151-
</executions>
152-
<configuration>
153-
<failOnError>false</failOnError>
154-
</configuration>
151+
</executions>
155152
</plugin>
156153

157154
<plugin>

wamp2spring-reactive/pom.xml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,4 +96,38 @@
9696

9797
</dependencies>
9898

99+
<build>
100+
<plugins>
101+
<plugin>
102+
<groupId>org.apache.maven.plugins</groupId>
103+
<artifactId>maven-compiler-plugin</artifactId>
104+
<version>3.14.0</version>
105+
<configuration>
106+
<source>17</source>
107+
<target>17</target>
108+
<testSource>17</testSource>
109+
<testTarget>17</testTarget>
110+
<encoding>UTF-8</encoding>
111+
<parameters>true</parameters>
112+
</configuration>
113+
</plugin>
114+
<plugin>
115+
<groupId>org.apache.maven.plugins</groupId>
116+
<artifactId>maven-javadoc-plugin</artifactId>
117+
<version>3.11.1</version>
118+
<executions>
119+
<execution>
120+
<id>attach-javadocs</id>
121+
<goals>
122+
<goal>jar</goal>
123+
</goals>
124+
<configuration>
125+
<sourcepath>${project.build.sourceDirectory}${path.separator}../wamp2spring-core/src/main/java</sourcepath>
126+
<failOnError>false</failOnError>
127+
</configuration>
128+
</execution>
129+
</executions>
130+
</plugin>
131+
</plugins>
132+
</build>
99133
</project>

0 commit comments

Comments
 (0)