|
24 | 24 |
|
25 | 25 | <properties> |
26 | 26 | <preferred.encoding>UTF-8</preferred.encoding> |
27 | | - <maven.compiler.source>1.8</maven.compiler.source> |
28 | | - <maven.compiler.target>1.8</maven.compiler.target> |
| 27 | + <maven.compiler.source>17</maven.compiler.source> |
| 28 | + <maven.compiler.target>17</maven.compiler.target> |
29 | 29 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
30 | 30 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
31 | 31 | <inceptionYear>2018</inceptionYear> |
|
81 | 81 | </dependencies> |
82 | 82 | </dependencyManagement> |
83 | 83 |
|
84 | | - <distributionManagement> |
85 | | - <snapshotRepository> |
86 | | - <id>ossrh</id> |
87 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
88 | | - </snapshotRepository> |
89 | | - <repository> |
90 | | - <id>ossrh</id> |
91 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
92 | | - </repository> |
93 | | - </distributionManagement> |
94 | | - |
95 | | - <profiles> |
96 | | - <profile> |
97 | | - <id>ossrh</id> |
98 | | - <build> |
99 | | - <plugins> |
100 | | - <plugin> |
101 | | - <groupId>org.apache.maven.plugins</groupId> |
102 | | - <artifactId>maven-gpg-plugin</artifactId> |
103 | | - <version>3.0.1</version> |
104 | | - <executions> |
105 | | - <execution> |
106 | | - <id>sign-artifacts</id> |
107 | | - <phase>verify</phase> |
108 | | - <goals> |
109 | | - <goal>sign</goal> |
110 | | - </goals> |
111 | | - </execution> |
112 | | - </executions> |
113 | | - </plugin> |
114 | | - </plugins> |
115 | | - </build> |
116 | | - </profile> |
117 | | - </profiles> |
118 | | - |
119 | 84 | <build> |
120 | 85 | <plugins> |
121 | | - <plugin> |
122 | | - <groupId>org.apache.maven.plugins</groupId> |
123 | | - <artifactId>maven-plugin-plugin</artifactId> |
124 | | - <version>3.7.1</version> |
125 | | - <configuration> |
126 | | - <goalPrefix>reporter</goalPrefix> |
127 | | - <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> |
128 | | - </configuration> |
129 | | - <executions> |
130 | | - <execution> |
131 | | - <id>mojo-descriptor</id> |
132 | | - <goals> |
133 | | - <goal>descriptor</goal> |
134 | | - </goals> |
135 | | - </execution> |
136 | | - </executions> |
137 | | - </plugin> |
138 | | - <plugin> |
139 | | - <groupId>org.apache.maven.plugins</groupId> |
140 | | - <artifactId>maven-source-plugin</artifactId> |
141 | | - <version>3.2.1</version> |
142 | | - <executions> |
143 | | - <execution> |
144 | | - <id>attach-sources</id> |
145 | | - <goals> |
146 | | - <goal>jar</goal> |
147 | | - </goals> |
148 | | - </execution> |
149 | | - </executions> |
150 | | - </plugin> |
151 | | - <plugin> |
152 | | - <groupId>org.apache.maven.plugins</groupId> |
153 | | - <artifactId>maven-jar-plugin</artifactId> |
154 | | - <version>3.3.0</version> |
155 | | - <configuration> |
156 | | - <archive> |
157 | | - <manifestEntries> |
158 | | - <Built-By>John Deere</Built-By> |
159 | | - </manifestEntries> |
160 | | - </archive> |
161 | | - </configuration> |
162 | | - </plugin> |
163 | | - |
164 | 86 | <plugin> |
165 | 87 | <groupId>com.mycila.maven-license-plugin</groupId> |
166 | 88 | <artifactId>maven-license-plugin</artifactId> |
|
208 | 130 | <debug>false</debug> |
209 | 131 | </configuration> |
210 | 132 | </plugin> |
211 | | - <plugin> |
212 | | - <groupId>org.apache.maven.plugins</groupId> |
213 | | - <artifactId>maven-release-plugin</artifactId> |
214 | | - <version>2.5.3</version> |
215 | | - <configuration> |
216 | | - <arguments>maven.test.skip=true</arguments> |
217 | | - <autoVersionSubmodules>true</autoVersionSubmodules> |
218 | | - <preparationGoals>clean install</preparationGoals> |
219 | | - </configuration> |
220 | | - </plugin> |
221 | | - <plugin> |
222 | | - <groupId>org.apache.maven.plugins</groupId> |
223 | | - <artifactId>maven-deploy-plugin</artifactId> |
224 | | - <version>3.1.0</version> |
225 | | - <configuration> |
226 | | - <skip>false</skip> |
227 | | - </configuration> |
228 | | - </plugin> |
229 | 133 | </plugins> |
230 | 134 | </build> |
231 | 135 |
|
|
0 commit comments