parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>dk.apaq.framework</groupId>
<artifactId>parent</artifactId>
<version>1.0.5</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>
<version>1.0.5</version>
<packaging>pom</packaging>
<url>https://github.com/Apaq/apaq-framework</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<issueManagement>
<system>Github</system>
<url>https://github.com/Apaq/apaq-framework/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git@github.com:Apaq/apaq-framework.git</connection>
<url>scm:git:git@github.com:Apaq/apaq-framework.git</url>
<developerConnection>scm:git:git@github.com:Apaq/apaq-framework.git</developerConnection>
</scm>
<distributionManagement>
<snapshotRepository>
<id>sonatype-snapshot</id>
<name>Sonatype snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-release</id>
<name>Sonatype release</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
<modules>
<module>repository</module>
<module>criteria</module>
<module>criteria-jpa</module>
<module>criteria-mongo</module>
<module>repository-jpa</module>
<module>repository-mongo</module>
<module>repository-vaadin</module>
</modules>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<developers>
<developer>
<name>Michael Krog</name>
<organization>Apaq</organization>
<email>mic@apaq.dk</email>
</developer>
</developers>
<licenses>
<license>
<name>GNU Affero General Public License</name>
<url>http://www.gnu.org/licenses/agpl-3.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<preparationGoals>clean install</preparationGoals>
</configuration>
</plugin>
</plugins>
</build>
<groupId>dk.apaq.framework</groupId>
<artifactId>parent</artifactId>
<name>Apaq Framework - Parent</name>
<description>Apaq Framework Parent</description>
</project>