diff options
| author | Benjamin Culkin <scorpress@gmail.com> | 2024-01-31 19:18:05 -0500 |
|---|---|---|
| committer | Benjamin Culkin <scorpress@gmail.com> | 2024-01-31 19:18:05 -0500 |
| commit | c04ab89a4192ad56a92161469eaa1389ee7a2cfb (patch) | |
| tree | 28955ab7fab98f8e99a1bb4855bcf0cb53a10028 | |
| parent | f83040fbf50c4e38ea6584ff819dad8daad626e9 (diff) | |
| -rw-r--r-- | CSMath/.gitignore | 1 | ||||
| -rw-r--r-- | CSMath/pom.xml | 71 |
2 files changed, 70 insertions, 2 deletions
diff --git a/CSMath/.gitignore b/CSMath/.gitignore index 09e3bc9..20d6611 100644 --- a/CSMath/.gitignore +++ b/CSMath/.gitignore @@ -1,2 +1,3 @@ /bin/ /target/ +.settings diff --git a/CSMath/pom.xml b/CSMath/pom.xml index 577aad2..b1f8fbd 100644 --- a/CSMath/pom.xml +++ b/CSMath/pom.xml @@ -1,13 +1,32 @@ <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>CSMath</artifactId> <version>0.0.2-SNAPSHOT</version> <name>CSMath</name> <description>Projects from Advanced CS Math class</description> + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> <build> <sourceDirectory>src</sourceDirectory> <plugins> + <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> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> @@ -20,9 +39,57 @@ </build> <dependencies> <dependency> - <groupId>bjc</groupId> + <groupId>com.ashardalon</groupId> <artifactId>BJC-Utils2</artifactId> <version>2.0-SNAPSHOT</version> </dependency> </dependencies> + + <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> + <site> + <id>ashardalon-dav</id> + <url>dav:https://ashardalon.com/projects/csmath</url> + </site> + <snapshotRepository> + <id>ashardalon</id> + <name>Ashardalon Snapshots</name> + <url>https://repo.ashardalon.com/snapshots</url> + </snapshotRepository> + <repository> + <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> </project> |
