diff options
Diffstat (limited to 'pom.xml')
| -rw-r--r-- | pom.xml | 73 |
1 files changed, 66 insertions, 7 deletions
@@ -2,11 +2,15 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> - <groupId>bjc</groupId> + <groupId>com.ashardalon</groupId> <artifactId>BJCUtils-Parent</artifactId> <version>2.0-SNAPSHOT</version> <packaging>pom</packaging> + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + <build> <plugins> <plugin> @@ -18,18 +22,73 @@ <target>11</target> </configuration> </plugin> + + <plugin> + <artifactId>maven-site-plugin</artifactId> + <version>3.7.1</version> + <dependencies> + <dependency> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-webdav-jackrabbit</artifactId> + <version>3.5.3</version> + </dependency> + </dependencies> + </plugin> + + <plugin> + <artifactId>maven-project-info-reports-plugin</artifactId> + <version>3.0.0</version> + </plugin> </plugins> </build> + + <reporting> + <plugins> + <plugin> + <artifactId>maven-javadoc-plugin</artifactId> + <version>3.4.0</version> + <configuration></configuration> + </plugin> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.22.1</version> + </plugin> + <plugin> + <artifactId>maven-changes-plugin</artifactId> + <version>2.12.1</version> + </plugin> + </plugins> + </reporting> + <distributionManagement> - <snapshotRepository> - <id>ossrh</id> - <url>https://oss.sonatype.org/content/repositories/snapshots</url> - </snapshotRepository> + <site> + <id>ashardalon-dav</id> + <url>dav:https://ashardalon.com/projects/bjc-utils2</url> + </site> + <snapshotRepository> + <id>ashardalon</id> + <name>Ashardalon Snapshots</name> + <url>https://repo.ashardalon.com/snapshots</url> + </snapshotRepository> <repository> - <id>ossrh</id> - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> + <id>ashardalon</id> + <name>Ashardalon Releases</name> + <url>https://repo.ashardalon.com/releases</url> </repository> </distributionManagement> + <repositories> + <repository> + <id>ashardalon-forge</id> + <name>Ashardalon Forge</name> + <url>https://repo.ashardalon.com</url> + <releases> + <enabled>true</enabled> + </releases> + <snapshots> + <enabled>true</enabled> + </snapshots> + </repository> + </repositories> <modules> <module>base</module> |
