Updated for complete reports, fixed 1 error in JavaDoc
Showing
with
97 additions
and
15 deletions
... | @@ -22,6 +22,38 @@ | ... | @@ -22,6 +22,38 @@ |
<maven.compiler.target>1.8</maven.compiler.target> | <maven.compiler.target>1.8</maven.compiler.target> | ||
</properties> | </properties> | ||
<distributionManagement> | |||
<repository> | |||
<id>internal</id> | |||
<url>https://mvn.felinewith.me/repository/internal/</url> | |||
</repository> | |||
<snapshotRepository> | |||
<id>snapshots</id> | |||
<url>https://mvn.felinewith.me/repository/snapshots/</url> | |||
</snapshotRepository> | |||
<site> | |||
<id>Main</id> | |||
<url>https://ladyserenakitty.felinewith.me/candle-pos/</url> | |||
</site> | |||
</distributionManagement> | |||
<issueManagement> | |||
<system>GitLab</system> | |||
<url>https://felinewith.me/LadySerenaKitty/candle-pos/issues</url> | |||
</issueManagement> | |||
<ciManagement> | |||
<system>GitLab CI</system> | |||
<url>https://felinewith.me/LadySerenaKitty/candle-pos/pipelines</url> | |||
</ciManagement> | |||
<scm> | |||
<connection>scm:git:https://felinewith.me/LadySerenaKitty/candle-pos.git</connection> | |||
<developerConnection>scm:git:[email protected]:LadySerenaKitty/candle-pos.git</developerConnection> | |||
<tag>master</tag> | |||
<url>https://felinewith.me/LadySerenaKitty/candle-pos</url> | |||
</scm> | |||
<build> | <build> | ||
<plugins> | <plugins> | ||
<plugin> | <plugin> | ||
... | @@ -58,20 +90,70 @@ | ... | @@ -58,20 +90,70 @@ |
</plugins> | </plugins> | ||
</build> | </build> | ||
<distributionManagement> | <reporting> | ||
<repository> | <plugins> | ||
<id>internal</id> | <plugin> | ||
<url>https://mvn.felinewith.me/repository/internal/</url> | <groupId>org.apache.maven.plugins</groupId> | ||
</repository> | <artifactId>maven-changelog-plugin</artifactId> | ||
<snapshotRepository> | <version>2.3</version> | ||
<id>snapshots</id> | </plugin> | ||
<url>https://mvn.felinewith.me/repository/snapshots/</url> | <plugin> | ||
</snapshotRepository> | <groupId>org.apache.maven.plugins</groupId> | ||
<site> | <artifactId>maven-changes-plugin</artifactId> | ||
<id>Main</id> | <version>2.12.1</version> | ||
<url>https://ladyserenakitty.felinewith.me/candle-pos/</url> | </plugin> | ||
</site> | <plugin> | ||
</distributionManagement> | <groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-checkstyle-plugin</artifactId> | |||
<version>2.17</version> | |||
</plugin> | |||
<plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-doap-plugin</artifactId> | |||
<version>1.2</version> | |||
</plugin> | |||
<plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-docck-plugin</artifactId> | |||
<version>1.1</version> | |||
</plugin> | |||
<plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-javadoc-plugin</artifactId> | |||
<version>2.10.4</version> | |||
</plugin> | |||
<plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-jdeps-plugin</artifactId> | |||
<version>3.0.0</version> | |||
</plugin> | |||
<plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-jxr-plugin</artifactId> | |||
<version>2.5</version> | |||
</plugin> | |||
<plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-pmd-plugin</artifactId> | |||
<version>3.8</version> | |||
</plugin> | |||
<plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-project-info-reports-plugin</artifactId> | |||
<version>2.9</version> | |||
</plugin> | |||
<plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-surefire-report-plugin</artifactId> | |||
<version>2.20</version> | |||
</plugin> | |||
<plugin> | |||
<groupId>org.apache.maven.plugins</groupId> | |||
<artifactId>maven-dependency-plugin</artifactId> | |||
<version>3.0.1</version> | |||
</plugin> | |||
</plugins> | |||
</reporting> | |||
<dependencies> | <dependencies> | ||
<dependency> | <dependency> | ||
... | ... |
... | @@ -25,7 +25,7 @@ import java.util.zip.ZipEntry; | ... | @@ -25,7 +25,7 @@ import java.util.zip.ZipEntry; |
/** | /** | ||
* | * | ||
* @author Jessica Hawkwell <[email protected]> | * @author Jessica Hawkwell | ||
*/ | */ | ||
public class FireCodeClassLoader extends ClassLoader | public class FireCodeClassLoader extends ClassLoader | ||
{ | { | ||
... | ... |
-
Please register or sign in to post a comment