File tree 3 files changed +33
-3
lines changed
3 files changed +33
-3
lines changed Original file line number Diff line number Diff line change 66
66
<dependency >
67
67
<groupId >org.ow2.asm</groupId >
68
68
<artifactId >asm</artifactId >
69
- <version >6.2</version >
69
+ <version >6.2.1 </version >
70
70
</dependency >
71
71
<dependency >
72
72
<groupId >com.thoughtworks.qdox</groupId >
119
119
<plugin >
120
120
<groupId >org.apache.maven.plugins</groupId >
121
121
<artifactId >maven-compiler-plugin</artifactId >
122
- <version >3.7.0</version >
123
122
<executions >
124
123
<execution >
125
124
<id >jdk9</id >
128
127
</goals >
129
128
<configuration >
130
129
<release >9</release >
130
+ <multiReleaseOutput >true</multiReleaseOutput >
131
131
<compileSourceRoots >
132
132
<compileSourceRoot >${project.basedir} /src/main/java9</compileSourceRoot >
133
133
</compileSourceRoots >
134
- <outputDirectory >${project.build.outputDirectory} /META-INF/versions/9</outputDirectory >
135
134
</configuration >
136
135
</execution >
137
136
</executions >
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Licensed to the Apache Software Foundation (ASF) under one
3
+ * or more contributor license agreements. See the NOTICE file
4
+ * distributed with this work for additional information
5
+ * regarding copyright ownership. The ASF licenses this file
6
+ * to you under the Apache License, Version 2.0 (the
7
+ * "License"); you may not use this file except in compliance
8
+ * with the License. You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing,
13
+ * software distributed under the License is distributed on an
14
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ * KIND, either express or implied. See the License for the
16
+ * specific language governing permissions and limitations
17
+ * under the License.
18
+ */
19
+ module org .codehaus .plexus .languages .java
20
+ {
21
+ requires com .thoughtworks .qdox ;
22
+ requires org .objectweb .asm ;
23
+
24
+ exports org .codehaus .plexus .languages .java .jpms ;
25
+ exports org .codehaus .plexus .languages .java .version ;
26
+ }
Original file line number Diff line number Diff line change 47
47
<build >
48
48
<pluginManagement >
49
49
<plugins >
50
+ <plugin >
51
+ <groupId >org.apache.maven.plugins</groupId >
52
+ <artifactId >maven-compiler-plugin</artifactId >
53
+ <version >3.8.0</version >
54
+ </plugin >
50
55
<plugin >
51
56
<groupId >org.apache.maven.plugins</groupId >
52
57
<artifactId >maven-release-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments