|
12 | 12 | <parent> |
13 | 13 | <groupId>com.bernardomg.maven</groupId> |
14 | 14 | <artifactId>base-pom</artifactId> |
15 | | - <version>1.5.6</version> |
| 15 | + <version>1.5.11</version> |
16 | 16 | </parent> |
17 | 17 |
|
18 | 18 | <!-- ********************************************** --> |
|
21 | 21 |
|
22 | 22 | <groupId>com.bernardomg.tabletop</groupId> |
23 | 23 | <artifactId>dice</artifactId> |
24 | | - <version>2.2.5</version> |
| 24 | + <version>2.2.6</version> |
25 | 25 | <packaging>jar</packaging> |
26 | 26 |
|
27 | 27 | <name>Dice Notation Tools for Java</name> |
|
67 | 67 | <!-- ============================================== --> |
68 | 68 | <!-- ============ DEPLOYMENT PROFILES ============= --> |
69 | 69 | <!-- ============================================== --> |
70 | | - <profile> |
71 | | - <!-- Site deployment profile --> |
72 | | - <!-- Sets the site repository to point to the releases repo --> |
73 | | - <id>deployment-site</id> |
74 | | - <activation> |
75 | | - <!-- Active by default so the repository appears in the reports --> |
76 | | - <activeByDefault>true</activeByDefault> |
77 | | - </activation> |
78 | | - <distributionManagement> |
79 | | - <site> |
80 | | - <id>site</id> |
81 | | - <name>Project Documentation Site</name> |
82 | | - <!-- The URL should be set externally --> |
83 | | - <url>${site.url}</url> |
84 | | - </site> |
85 | | - </distributionManagement> |
86 | | - </profile> |
87 | 70 | <profile> |
88 | 71 | <!-- Github deployment profile. --> |
89 | 72 | <id>deployment-github</id> |
|
92 | 75 | <!-- Github repository --> |
93 | 76 | <id>github</id> |
94 | 77 | <name>GitHub Packages</name> |
95 | | - <url>https://maven.pkg.github.com/Bernardo-MG/dice-notation-java</url> |
| 78 | + <url>https://maven.pkg.github.com/bernardo-mg/java-validation</url> |
96 | 79 | </repository> |
97 | 80 | </distributionManagement> |
98 | 81 | </profile> |
99 | 82 | <profile> |
100 | | - <!-- OSSRH deployment profile. --> |
101 | | - <id>deployment-ossrh</id> |
102 | | - <distributionManagement> |
103 | | - <repository> |
104 | | - <!-- OSSRH repository --> |
105 | | - <id>ossrh</id> |
106 | | - <name>Central Repository OSSRH</name> |
107 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
108 | | - </repository> |
109 | | - <snapshotRepository> |
110 | | - <!-- OSSRH snapshots repository --> |
111 | | - <id>ossrh</id> |
112 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
113 | | - </snapshotRepository> |
114 | | - </distributionManagement> |
| 83 | + <!-- Central deployment profile. --> |
| 84 | + <id>deployment-central</id> |
115 | 85 | <build> |
116 | 86 | <plugins> |
117 | 87 | <plugin> |
118 | 88 | <!-- GPG --> |
119 | | - <!-- Signs the artifacts --> |
120 | 89 | <groupId>org.apache.maven.plugins</groupId> |
121 | 90 | <artifactId>maven-gpg-plugin</artifactId> |
122 | 91 | <executions> |
|
136 | 105 | </gpgArguments> |
137 | 106 | </configuration> |
138 | 107 | </plugin> |
| 108 | + <plugin> |
| 109 | + <!-- Maven Central publishing --> |
| 110 | + <groupId>org.sonatype.central</groupId> |
| 111 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 112 | + <extensions>true</extensions> |
| 113 | + <configuration> |
| 114 | + <publishingServerId>central</publishingServerId> |
| 115 | + <autoPublish>true</autoPublish> |
| 116 | + <waitUntil>published</waitUntil> |
| 117 | + </configuration> |
| 118 | + </plugin> |
139 | 119 | </plugins> |
140 | 120 | </build> |
141 | 121 | </profile> |
|
176 | 156 | <!-- ============================================== --> |
177 | 157 | <maven.version>3.8</maven.version> |
178 | 158 | <!-- ============================================== --> |
179 | | - <!-- ================ JAVA VERSION ================ --> |
180 | | - <!-- ============================================== --> |
181 | | - <java.version>11</java.version> |
182 | | - <!-- ============================================== --> |
183 | 159 | <!-- =============== MANIFEST DATA ================ --> |
184 | 160 | <!-- ============================================== --> |
185 | 161 | <manifest.name>com/bernardomg/tabletop/dice</manifest.name> |
186 | 162 | <!-- ============================================== --> |
187 | 163 | <!-- =========== DEPENDENCIES VERSIONS ============ --> |
188 | 164 | <!-- ============================================== --> |
189 | | - <antlr.version>4.13.1</antlr.version> |
190 | | - <assertj.version>3.25.1</assertj.version> |
191 | | - <junit.jupiter.version>5.10.1</junit.jupiter.version> |
192 | | - <lombok.version>1.18.30</lombok.version> |
193 | | - <mockito.version>5.8.0</mockito.version> |
194 | | - <log4j.version>2.20.0</log4j.version> |
195 | | - <slf4j.version>2.0.9</slf4j.version> |
| 165 | + <antlr.version>4.13.2</antlr.version> |
| 166 | + <assertj.version>3.27.3</assertj.version> |
| 167 | + <junit.jupiter.version>5.13.3</junit.jupiter.version> |
| 168 | + <mockito.version>5.18.0</mockito.version> |
| 169 | + <log4j.version>2.25.0</log4j.version> |
| 170 | + <slf4j.version>2.0.17</slf4j.version> |
196 | 171 | <!-- ============================================== --> |
197 | 172 | <!-- ============== PLUGINS VERSIONS ============== --> |
198 | 173 | <!-- ============================================== --> |
|
210 | 185 | <!-- ============================================== --> |
211 | 186 | <!-- ================= MAVEN SITE ================= --> |
212 | 187 | <!-- ============================================== --> |
213 | | - <site.skin.version>2.3.2</site.skin.version> |
| 188 | + <site.skin.version>2.4.1</site.skin.version> |
214 | 189 | <mavenURL>http://mvnrepository.com/artifact/com.bernardomg.tabletop/dice</mavenURL> |
215 | 190 | <githubArtifactURL><![CDATA[https://github.com/Bernardo-MG?tab=packages&repo_name=dice-notation-java]]></githubArtifactURL> |
216 | 191 | </properties> |
|
240 | 215 | <version>${antlr.version}</version> |
241 | 216 | </dependency> |
242 | 217 | <!-- ============================================== --> |
243 | | - <!-- ================== LOMBOK ==================== --> |
244 | | - <!-- ============================================== --> |
245 | | - <dependency> |
246 | | - <!-- Lombok --> |
247 | | - <groupId>org.projectlombok</groupId> |
248 | | - <artifactId>lombok</artifactId> |
249 | | - <version>${lombok.version}</version> |
250 | | - <scope>provided</scope> |
251 | | - </dependency> |
252 | | - <!-- ============================================== --> |
253 | 218 | <!-- ================== LOGGERS =================== --> |
254 | 219 | <!-- ============================================== --> |
255 | 220 | <dependency> |
|
0 commit comments