| Group ID: |
io.github.richpurba |
| Artifact ID: |
java-project |
| Version: |
1.0.4 |
| Last modified: |
07.10.2021 16:18 |
| Packaging: |
maven-archetype |
| Name: |
io.github.richpurba:java-project |
| Description: |
Archetype for a simple template for Java Project |
| URL: |
https://www.devoteam.com |
|
|
| Size: |
6.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/io/github/richpurba/java-project/1.0.4/java-project-1.0.4.jar |
| POM: |
Show
hide
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.richpurba</groupId>
<artifactId>java-project</artifactId>
<version>1.0.4</version>
<packaging>maven-archetype</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<description>Archetype for a simple template for Java Project</description>
<url>https://www.devoteam.com</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Richard Purba</name>
<email>tepetrol@yahoo.com</email>
<organization>devoteam</organization>
<organizationUrl>https://www.devoteam.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/richPurba/devoteam-archetype</connection>
<developerConnection>scm:git:ssh://github.com:richPurba/devoteam-archetype</developerConnection>
<url>https://github.com/richPurba/devoteam-archetype.git</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.archetype</groupId>
<artifactId>archetype-packaging</artifactId>
<version>3.1.1</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<keyname>${gpg.keyname}</keyname>
<passphraseServerId>${gpg.keyname}</passphraseServerId>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
| Maven: |
<dependency>
<groupId>io.github.richpurba</groupId>
<artifactId>java-project</artifactId>
<version>1.0.4</version>
</dependency>
|
| Gradle: |
io.github.richpurba:java-project:1.0.4 |
| Dependency Graph: |
Show
Less
More
|