File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 9595
9696 </dependencies >
9797
98+ <build >
99+ <plugins >
100+ <plugin >
101+ <groupId >org.apache.maven.plugins</groupId >
102+ <artifactId >maven-compiler-plugin</artifactId >
103+ <version >3.14.0</version >
104+ <configuration >
105+ <source >17</source >
106+ <target >17</target >
107+ <testSource >17</testSource >
108+ <testTarget >17</testTarget >
109+ <encoding >UTF-8</encoding >
110+ <parameters >true</parameters >
111+ </configuration >
112+ </plugin >
113+ <plugin >
114+ <groupId >org.apache.maven.plugins</groupId >
115+ <artifactId >maven-javadoc-plugin</artifactId >
116+ <version >3.11.1</version >
117+ <executions >
118+ <execution >
119+ <id >attach-javadocs</id >
120+ <goals >
121+ <goal >jar</goal >
122+ </goals >
123+ <configuration >
124+ <sourcepath >${project.build.sourceDirectory}${path.separator} ../wamp2spring-core/src/main/java</sourcepath >
125+ <failOnError >false</failOnError >
126+ </configuration >
127+ </execution >
128+ </executions >
129+ </plugin >
130+ </plugins >
131+ </build >
132+
98133</project >
You can’t perform that action at this time.
0 commit comments