|
7 | 7 | <groupId>nl.jworks.markdown_to_asciidoc</groupId>
|
8 | 8 | <artifactId>markdown_to_asciidoc</artifactId>
|
9 | 9 | <version>2.0.0-SNAPSHOT</version>
|
| 10 | + |
| 11 | + <licenses> |
| 12 | + <license> |
| 13 | + <name>The Apache License, Version 2.0</name> |
| 14 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 15 | + </license> |
| 16 | + </licenses> |
| 17 | + |
| 18 | + <developers> |
| 19 | + <developer> |
| 20 | + <id>bodiam</id> |
| 21 | + <name>Erik Pragt</name> |
| 22 | + |
| 23 | + <url>https://github.com/bodiam</url> |
| 24 | + </developer> |
| 25 | + <developer> |
| 26 | + <id>mojavelinux</id> |
| 27 | + <name>Dan Allen</name> |
| 28 | + <url>https://mojavelinux.com</url> |
| 29 | + </developer> |
| 30 | + <developer> |
| 31 | + <id>matozoid</id> |
| 32 | + <name>Danny van Bruggen</name> |
| 33 | + <url>http://www.laamella.com</url> |
| 34 | + </developer> |
| 35 | + <developer> |
| 36 | + <id>ahus1</id> |
| 37 | + <name>Alexander Schwartz</name> |
| 38 | + |
| 39 | + <url>https://www.ahus1.de</url> |
| 40 | + </developer> |
| 41 | + <developer> |
| 42 | + <id>dgautier</id> |
| 43 | + <name>David Gautier</name> |
| 44 | + <url>https://dgautier.github.io</url> |
| 45 | + </developer> |
| 46 | + </developers> |
| 47 | + |
| 48 | + <scm> |
| 49 | + <connection>scm:git:https://github.com/markdown-asciidoc/markdown-to-asciidoc.git</connection> |
| 50 | + <url>https://github.com/markdown-asciidoc/markdown-to-asciidoc.git</url> |
| 51 | + <developerConnection>scm:git:https://github.com/markdown-asciidoc/markdown-to-asciidoc.git</developerConnection> |
| 52 | + <tag>HEAD</tag> |
| 53 | + </scm> |
10 | 54 |
|
11 | 55 | <properties>
|
12 |
| - <kotlin.version>1.8.0</kotlin.version> |
| 56 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 57 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 58 | + <kotlin.version>1.9.22</kotlin.version> |
13 | 59 | <java.version>17</java.version>
|
14 | 60 | <cucumber.version>7.15.0</cucumber.version>
|
15 | 61 | <maven.compiler.target>${java.version}</maven.compiler.target>
|
|
48 | 94 | <dependency>
|
49 | 95 | <groupId>commons-io</groupId>
|
50 | 96 | <artifactId>commons-io</artifactId>
|
51 |
| - <version>2.13.0</version> |
| 97 | + <version>2.15.1</version> |
52 | 98 | <scope>test</scope>
|
53 | 99 | </dependency>
|
54 | 100 | <dependency>
|
|
96 | 142 | <plugin>
|
97 | 143 | <groupId>org.apache.maven.plugins</groupId>
|
98 | 144 | <artifactId>maven-surefire-plugin</artifactId>
|
99 |
| - <version>3.1.2</version> |
| 145 | + <version>3.2.3</version> |
100 | 146 | <configuration>
|
101 | 147 | <argLine>--add-opens java.base/java.lang=ALL-UNNAMED</argLine>
|
102 | 148 | </configuration>
|
103 | 149 | </plugin>
|
104 | 150 | </plugins>
|
105 | 151 | </build>
|
106 | 152 |
|
| 153 | + <profiles> |
| 154 | + <profile> |
| 155 | + <id>ossrh</id> |
| 156 | + <distributionManagement> |
| 157 | + <repository> |
| 158 | + <id>ossrh</id> |
| 159 | + <name>Central Repository OSSRH</name> |
| 160 | + <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 161 | + </repository> |
| 162 | + <snapshotRepository> |
| 163 | + <id>ossrh</id> |
| 164 | + <name>Central Repository OSSRH</name> |
| 165 | + <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
| 166 | + </snapshotRepository> |
| 167 | + </distributionManagement> |
| 168 | + <build> |
| 169 | + <plugins> |
| 170 | + <plugin> |
| 171 | + <groupId>org.apache.maven.plugins</groupId> |
| 172 | + <artifactId>maven-gpg-plugin</artifactId> |
| 173 | + <version>3.1.0</version> |
| 174 | + <executions> |
| 175 | + <execution> |
| 176 | + <id>sign-artifacts</id> |
| 177 | + <phase>verify</phase> |
| 178 | + <goals> |
| 179 | + <goal>sign</goal> |
| 180 | + </goals> |
| 181 | + </execution> |
| 182 | + </executions> |
| 183 | + <configuration> |
| 184 | + <!-- Prevent gpg from using pinentry programs. Fixes: gpg: signing |
| 185 | + failed: Inappropriate ioctl for device --> |
| 186 | + <gpgArguments> |
| 187 | + <arg>--pinentry-mode</arg> |
| 188 | + <arg>loopback</arg> |
| 189 | + </gpgArguments> |
| 190 | + </configuration> |
| 191 | + </plugin> |
| 192 | + <plugin> |
| 193 | + <groupId>org.apache.maven.plugins</groupId> |
| 194 | + <artifactId>maven-source-plugin</artifactId> |
| 195 | + <version>3.3.0</version> |
| 196 | + <executions> |
| 197 | + <execution> |
| 198 | + <id>attach-sources</id> |
| 199 | + <goals> |
| 200 | + <goal>jar-no-fork</goal> |
| 201 | + </goals> |
| 202 | + </execution> |
| 203 | + </executions> |
| 204 | + </plugin> |
| 205 | + <plugin> |
| 206 | + <groupId>org.apache.maven.plugins</groupId> |
| 207 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 208 | + <version>3.6.0</version> |
| 209 | + <executions> |
| 210 | + <execution> |
| 211 | + <id>attach-javadocs</id> |
| 212 | + <goals> |
| 213 | + <goal>jar</goal> |
| 214 | + </goals> |
| 215 | + </execution> |
| 216 | + </executions> |
| 217 | + </plugin> |
| 218 | + <plugin> |
| 219 | + <groupId>org.jetbrains.dokka</groupId> |
| 220 | + <artifactId>dokka-maven-plugin</artifactId> |
| 221 | + <version>1.9.10</version> |
| 222 | + <executions> |
| 223 | + <execution> |
| 224 | + <phase>package</phase> |
| 225 | + <goals> |
| 226 | + <goal>javadocJar</goal> |
| 227 | + </goals> |
| 228 | + </execution> |
| 229 | + </executions> |
| 230 | + </plugin> |
| 231 | + <plugin> |
| 232 | + <groupId>org.apache.maven.plugins</groupId> |
| 233 | + <artifactId>maven-release-plugin</artifactId> |
| 234 | + <version>3.0.1</version> |
| 235 | + <configuration> |
| 236 | + <scmCommentPrefix>[ci skip]</scmCommentPrefix> |
| 237 | + </configuration> |
| 238 | + </plugin> |
| 239 | + </plugins> |
| 240 | + </build> |
| 241 | + </profile> |
| 242 | + <profile> |
| 243 | + <id>github</id> |
| 244 | + <distributionManagement> |
| 245 | + <repository> |
| 246 | + <id>github</id> |
| 247 | + <name>GitHub Packages</name> |
| 248 | + <url>https://maven.pkg.github.com/markdown-asciidoc/markdown-to-asciidoc</url> |
| 249 | + </repository> |
| 250 | + </distributionManagement> |
| 251 | + </profile> |
| 252 | + <profile> |
| 253 | + <id>coverage</id> |
| 254 | + <build> |
| 255 | + <plugins> |
| 256 | + <plugin> |
| 257 | + <groupId>org.jacoco</groupId> |
| 258 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 259 | + <version>0.8.11</version> |
| 260 | + <executions> |
| 261 | + <execution> |
| 262 | + <id>prepare-agent</id> |
| 263 | + <goals> |
| 264 | + <goal>prepare-agent</goal> |
| 265 | + </goals> |
| 266 | + </execution> |
| 267 | + <execution> |
| 268 | + <id>jacoco-report</id> |
| 269 | + <phase>verify</phase> |
| 270 | + <goals> |
| 271 | + <goal>report</goal> |
| 272 | + </goals> |
| 273 | + </execution> |
| 274 | + </executions> |
| 275 | + </plugin> |
| 276 | + </plugins> |
| 277 | + </build> |
| 278 | + </profile> |
| 279 | + </profiles> |
107 | 280 | </project>
|
0 commit comments