gaertner
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.kadi79.gaertner</groupId>
<artifactId>gaertner</artifactId>
<version>0.0.2</version>
</dependency><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.github.kadi79.gaertner</groupId>
<artifactId>gaertner</artifactId>
<version>0.0.2</version>
<packaging>pom</packaging>
<name>Gaertner</name>
<url>https://github.com/dirk-kaspar/gaertner</url>
<description>Project Gärtner is set of Annotations and Annotationprocessors to simplify the generation of UML Diagrams from Java Code.
It generates .puml Files further processed by PlantUml and generates diagrams in SVG format.</description>
<scm>
<url>https://github.com/dirk-kaspar/gaertner.git</url>
</scm>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Dirk Kaspar</name>
<email>dirk.kaspar@example.com</email>
<organization>example</organization>
<organizationUrl>http://www.example.com</organizationUrl>
</developer>
</developers>
<modules>
<module>gaertner-annotations</module>
<module>gaertner-examples</module>
<module>gaertner-annotation-processor</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.kadi79.gaertner</groupId>
<artifactId>gaertner-annotations</artifactId>
<version>0.0.2</version>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
<gaertner.version>${project.version}</gaertner.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.4</version>
<configuration>
<defaultSince>${project.version}</defaultSince>
<fixTags>since,param,return,throws</fixTags>
<fixClassComment>true</fixClassComment>
<fixMethodComment>true</fixMethodComment>
<fixFieldComment>true</fixFieldComment>
<ignoreClirr>true</ignoreClirr>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</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>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<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>
</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://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>