stagean
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.machinezoo.stagean</groupId> <artifactId>stagean</artifactId> <version>1.3.0</version> </dependency>
<!-- Generated by scripts/configure.py --> <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>com.machinezoo.stagean</groupId> <artifactId>stagean</artifactId> <version>1.3.0</version> <name>Stagean</name> <description>Annotation types documenting current development stage on class or method level.</description> <url>https://stagean.machinezoo.com/</url> <inceptionYear>2020</inceptionYear> <licenses> <license> <name>Apache-2.0</name> <url>https://github.com/robertvazan/stagean/blob/master/LICENSE</url> </license> </licenses> <organization> <name>Robert Važan</name> <url>https://robert.machinezoo.com/</url> </organization> <developers> <developer> <name>Robert Važan</name> <email>robert.vazan@tutanota.com</email> <url>https://robert.machinezoo.com/</url> </developer> </developers> <scm> <connection>scm:git:https://github.com/robertvazan/stagean.git</connection> <developerConnection>scm:git:https://github.com/robertvazan/stagean.git</developerConnection> <url>https://github.com/robertvazan/stagean</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.release>11</maven.compiler.release> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.8.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.3.1</version> <configuration> <notimestamp>true</notimestamp> <bottom> <![CDATA[<!-- No copyright message. -->]]> </bottom> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <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.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>