artemis-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.onedaybeard.artemis</groupId> <artifactId>artemis-parent</artifactId> <version>2.0.0-RC6</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> <groupId>net.onedaybeard.artemis</groupId> <artifactId>artemis-parent</artifactId> <version>2.0.0-RC6</version> <packaging>pom</packaging> <name>artemis parent</name> <description>Fork of Artemis Entity System Framework.</description> <url>https://github.com/junkdog/artemis-odb</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <asm.version>4.1</asm.version> <junit.version>4.11</junit.version> <gwt.version>2.6.1</gwt.version> <matrix.artemis.version>0.2.0</matrix.artemis.version> <assembly.plugin.version>2.5.5</assembly.plugin.version> <jar.plugin.version>2.6</jar.plugin.version> </properties> <scm> <url>https://github.com/junkdog/artemis-odb/</url> <connection>scm:git:git@github.com:junkdog/artemis-odb.git</connection> <developerConnection>scm:git:git@github.com:junkdog/artemis-odb.git</developerConnection> <tag>artemis-odb-2.0.0-RC6</tag> </scm> <licenses> <license> <name>The BSD 2-Clause License</name> <url>http://opensource.org/licenses/BSD-2-Clause</url> <distribution>repo</distribution> <comments>Artemis main</comments> </license> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>libGDX TimSort and GWT reflection</comments> </license> </licenses> <issueManagement> <url>https://github.com/junkdog/artemis-odb/issues</url> <system>GitHub Issues</system> </issueManagement> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <site> <id>junkdog.github.com</id> <url>file:/home/junkdog/opt/dev/junkdog.github.io/sites/artemis-odb</url> </site> </distributionManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> </dependencies> <developers> <developer> <name>Adrian Papari</name> <email>junkdog@onedaybeard.net</email> <id>junkdog</id> <timezone>1</timezone> <roles> <role>owner</role> <role>developer</role> </roles> <properties> <twitter>@junkdogAP</twitter> </properties> </developer> <developer> <name>Daan van Yperen</name> <id>DaanVanYperen</id> <roles> <role>collaborator</role> <role>developer</role> </roles> <properties> <twitter>@DaanRedblade</twitter> </properties> </developer> </developers> <modules> <module>artemis</module> <module>artemis-serializer</module> <module>artemis-json</module> <module>artemis-json-libgdx</module> <module>artemis-kryo</module> <module>artemis-weaver</module> <module>artemis-maven</module> <module>artemis-gradle</module> <module>artemis-test</module> <module>artemis-cli</module> <module>artemis-gwt</module> </modules> <profiles> <profile> <id>gwttest</id> <modules> <module>artemis-gwt-test</module> </modules> </profile> <profile> <id>doclint-java8-disable</id> <activation> <jdk>[1.8,)</jdk> </activation> <properties> <additionalparam>-Xdoclint:none</additionalparam> </properties> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</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-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <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.3</version> <extensions>true</extensions> <configuration> <serverId>sonatype-nexus-staging</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> <tagNameFormat>artemis-odb-@{project.version}</tagNameFormat> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.3</version> <inherited>true</inherited> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.17</version> <reportSets> <reportSet> <reports> <report>checkstyle</report> </reports> </reportSet> </reportSets> <configuration> <configLocation>checkstyle.xml</configLocation> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>3.0.3</version> <inherited>true</inherited> <configuration> <omitVisitors>UnreadFields</omitVisitors> </configuration> </plugin> </plugins> </reporting> </project>