|
6 | 6 |
|
7 | 7 | <groupId>com.github.jhg023</groupId>
|
8 | 8 | <artifactId>SimpleNet</artifactId>
|
9 |
| - <version>1.6.5</version> |
| 9 | + <version>1.6.6</version> |
10 | 10 |
|
11 | 11 | <name>SimpleNet</name>
|
12 | 12 | <description>An easy-to-use, event-driven, asynchronous, network application framework compiled with Java 11.</description>
|
|
48 | 48 | <properties>
|
49 | 49 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
50 | 50 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
51 |
| - <junit.jupiter.version>5.6.0</junit.jupiter.version> |
| 51 | + <junit.jupiter.version>5.6.2</junit.jupiter.version> |
52 | 52 | </properties>
|
53 | 53 |
|
54 | 54 | <dependencies>
|
55 | 55 | <dependency>
|
56 | 56 | <groupId>com.github.jhg023</groupId>
|
57 | 57 | <artifactId>Pbbl</artifactId>
|
58 |
| - <version>1.0.1</version> |
| 58 | + <version>1.0.2</version> |
59 | 59 | </dependency>
|
60 | 60 | <dependency>
|
61 | 61 | <groupId>org.junit.jupiter</groupId>
|
|
86 | 86 | <plugins>
|
87 | 87 | <plugin>
|
88 | 88 | <groupId>org.apache.maven.plugins</groupId>
|
89 |
| - <artifactId>maven-compiler-plugin</artifactId> |
90 |
| - <version>3.8.1</version> |
91 |
| - <configuration> |
92 |
| - <source>11</source> |
93 |
| - <target>11</target> |
94 |
| - <compilerArgument>-Xlint</compilerArgument> |
95 |
| - </configuration> |
96 |
| - </plugin> |
97 |
| - <plugin> |
98 | 89 | <artifactId>maven-assembly-plugin</artifactId>
|
99 |
| - <version>3.2.0</version> |
| 90 | + <version>3.3.0</version> |
100 | 91 | <configuration>
|
101 | 92 | <descriptorRefs>
|
102 | 93 | <descriptorRef>jar-with-dependencies</descriptorRef>
|
|
115 | 106 | </executions>
|
116 | 107 | </plugin>
|
117 | 108 | <plugin>
|
118 |
| - <groupId>org.sonatype.plugins</groupId> |
119 |
| - <artifactId>nexus-staging-maven-plugin</artifactId> |
120 |
| - <version>1.6.8</version> |
121 |
| - <extensions>true</extensions> |
| 109 | + <groupId>org.apache.maven.plugins</groupId> |
| 110 | + <artifactId>maven-compiler-plugin</artifactId> |
| 111 | + <version>3.8.1</version> |
122 | 112 | <configuration>
|
123 |
| - <serverId>ossrh</serverId> |
124 |
| - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
125 |
| - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 113 | + <source>11</source> |
| 114 | + <target>11</target> |
| 115 | + <compilerArgument>-Xlint</compilerArgument> |
126 | 116 | </configuration>
|
127 | 117 | </plugin>
|
128 | 118 | <plugin>
|
129 | 119 | <groupId>org.apache.maven.plugins</groupId>
|
130 |
| - <artifactId>maven-source-plugin</artifactId> |
131 |
| - <version>3.2.1</version> |
| 120 | + <artifactId>maven-gpg-plugin</artifactId> |
| 121 | + <version>1.6</version> |
132 | 122 | <executions>
|
133 | 123 | <execution>
|
134 |
| - <id>attach-sources</id> |
| 124 | + <id>sign-artifacts</id> |
| 125 | + <phase>verify</phase> |
135 | 126 | <goals>
|
136 |
| - <goal>jar-no-fork</goal> |
| 127 | + <goal>sign</goal> |
137 | 128 | </goals>
|
138 | 129 | </execution>
|
139 | 130 | </executions>
|
140 | 131 | </plugin>
|
141 | 132 | <plugin>
|
142 | 133 | <groupId>org.apache.maven.plugins</groupId>
|
143 | 134 | <artifactId>maven-javadoc-plugin</artifactId>
|
144 |
| - <version>3.1.1</version> |
| 135 | + <version>3.2.0</version> |
145 | 136 | <executions>
|
146 | 137 | <execution>
|
147 | 138 | <id>attach-javadocs</id>
|
|
154 | 145 | <dependency>
|
155 | 146 | <groupId>org.ow2.asm</groupId>
|
156 | 147 | <artifactId>asm</artifactId>
|
157 |
| - <version>7.3.1</version> |
| 148 | + <version>8.0.1</version> |
158 | 149 | </dependency>
|
159 | 150 | </dependencies>
|
160 | 151 | <configuration>
|
|
163 | 154 | </plugin>
|
164 | 155 | <plugin>
|
165 | 156 | <groupId>org.apache.maven.plugins</groupId>
|
166 |
| - <artifactId>maven-gpg-plugin</artifactId> |
167 |
| - <version>1.6</version> |
| 157 | + <artifactId>maven-source-plugin</artifactId> |
| 158 | + <version>3.2.1</version> |
168 | 159 | <executions>
|
169 | 160 | <execution>
|
170 |
| - <id>sign-artifacts</id> |
171 |
| - <phase>verify</phase> |
| 161 | + <id>attach-sources</id> |
172 | 162 | <goals>
|
173 |
| - <goal>sign</goal> |
| 163 | + <goal>jar-no-fork</goal> |
174 | 164 | </goals>
|
175 | 165 | </execution>
|
176 | 166 | </executions>
|
177 | 167 | </plugin>
|
178 | 168 | <plugin>
|
179 | 169 | <groupId>org.apache.maven.plugins</groupId>
|
180 | 170 | <artifactId>maven-surefire-plugin</artifactId>
|
181 |
| - <version>3.0.0-M4</version> |
| 171 | + <version>3.0.0-M5</version> |
| 172 | + <configuration> |
| 173 | + <argLine>--add-opens com.github.simplenet/com.github.simplenet=ALL-UNNAMED</argLine> |
| 174 | + </configuration> |
| 175 | + </plugin> |
| 176 | + <plugin> |
| 177 | + <groupId>org.sonatype.plugins</groupId> |
| 178 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 179 | + <version>1.6.8</version> |
| 180 | + <extensions>true</extensions> |
| 181 | + <configuration> |
| 182 | + <serverId>ossrh</serverId> |
| 183 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 184 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 185 | + </configuration> |
182 | 186 | </plugin>
|
183 | 187 | </plugins>
|
184 | 188 | </build>
|
|
0 commit comments