activeobjects-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.java.dev.activeobjects</groupId> <artifactId>activeobjects-parent</artifactId> <version>3.2.10</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> <parent> <groupId>com.atlassian.pom</groupId> <!-- We don't use the Atlassian "central-pom" parent, because it's only for Atlassian groupIds --> <artifactId>base-pom</artifactId> <version>5.0.26</version> <relativePath><!-- empty --></relativePath> </parent> <groupId>net.java.dev.activeobjects</groupId> <artifactId>activeobjects-parent</artifactId> <version>3.2.10</version> <packaging>pom</packaging> <name>Active Objects - Parent POM</name> <description>ActiveObjects is an intuitive, pure-Java ORM. AO is designed from the ground up to be extremely simple and easy to use from an API standpoint. </description> <url>http://activeobjects.java.net/</url> <inceptionYear>2007</inceptionYear> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <id>djspiewak</id> <name>Daniel Spiewak</name> <roles> <role>Creator</role> </roles> </developer> <developer> <id>sleberrig</id> <name>Samuel Le Berrigaud</name> <email>sam(at)leberrigaud(dot)org</email> <timezone>+1</timezone> </developer> <developer> <id>mrdon</id> <name>Don Brown</name> <timezone>+10</timezone> </developer> <developer> <id>ahempel</id> <name>Adrian Hempel</name> <timezone>+10</timezone> </developer> </developers> <modules> <module>activeobjects-core</module> <module>activeobjects-builder</module> <module>activeobjects-test</module> <module>activeobjects-integration-test</module> <module>activeobjects-integration-test-model</module> <module>activeobjects-ant-task</module> <module>activeobjects</module> <module>activeobjects-benchmark</module> <module>activeobjects-integration-profiles</module> </modules> <scm> <connection>scm:git:git@bitbucket.org:server-platform/activeobjects.git</connection> <developerConnection>scm:git:git@bitbucket.org:server-platform/activeobjects.git</developerConnection> <url>https://bitbucket.org/server-platform/activeobjects</url> <tag>v3.2.10</tag> </scm> <issueManagement> <system>JIRA</system> <url>https://ecosystem.atlassian.net/browse/AO</url> </issueManagement> <ciManagement> <system>Bamboo</system> <url>https://ecosystem-bamboo.internal.atlassian.com/browse/AO</url> </ciManagement> <distributionManagement> <snapshotRepository> <!-- This ID is defined in the settings.xml in the atlassian/maven-settings-sonatype project on BBC --> <id>sonatype-nexus-snapshots</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <slf4j.version>1.7.25</slf4j.version> <junit.version>4.12</junit.version> <mockito.version>2.18.3</mockito.version> <hamcrest.version>1.3</hamcrest.version> <c3p0.version>0.9.5.5</c3p0.version> <dbcp.version>1.4</dbcp.version> <proxool.version>0.9.1</proxool.version> <dbpool.version>4.9.3-jdbc3</dbpool.version> <h2.version>1.4.200</h2.version> <mysql.version>8.0.19</mysql.version> <!-- Overrides maven-javadoc-plugin config in base POM --> <javadoc.additional.params>-Xdoclint:none</javadoc.additional.params> <jacoco.report.file>../jacoco-aggregator/target/site/jacoco-aggregate/jacoco.xml</jacoco.report.file> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>${mockito.version}</version> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>${hamcrest.version}</version> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>${hamcrest.version}</version> </dependency> </dependencies> </dependencyManagement> <!-- dependencies shared across all modules --> <dependencies> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>26.0-jre</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.8</version> </dependency> <!-- for tests --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.16</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.5</version> </plugin> <plugin> <groupId>org.leberrigaud.maven.plugins</groupId> <artifactId>database-maven-plugin</artifactId> <version>0.10</version> </plugin> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <version>0.33.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>sql-maven-plugin</artifactId> <version>1.5</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-maven</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <message>You must use maven 3.3.3 or above to build Active Objects</message> <version>[3.3.3,)</version> </requireMavenVersion> <requireJavaVersion> <message>Active Objects requires Java 8 or later to be built.</message> <version>[1.8,)</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin><!-- See https://central.sonatype.org/pages/apache-maven.html --> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <!-- This ID is defined in the settings.xml in the atlassian/maven-settings-sonatype project on BBC --> <serverId>sonatype-nexus-staging</serverId> <!-- See https://github.com/sonatype/nexus-maven-plugins/tree/master/staging/maven-plugin --> <autoReleaseAfterClose>true</autoReleaseAfterClose> <keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure> <keepStagingRepositoryOnFailure>true</keepStagingRepositoryOnFailure> <nexusUrl>https://oss.sonatype.org/</nexusUrl> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <properties> <skipTests>true</skipTests> </properties> <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> <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.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> </build> </profile> <profile> <id>jacoco</id> <properties> <jacoco.include.pattern>net/java/ao/**</jacoco.include.pattern> </properties> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <id>agent-for-ut</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <propertyName>jacoco.agent.argLine</propertyName> <includes> <include>${jacoco.include.pattern}</include> </includes> </configuration> </execution> <execution> <id>agent-for-it</id> <phase>initialize</phase> <goals> <goal>prepare-agent-integration</goal> </goals> <configuration> <propertyName>jacoco.agent.it.argLine</propertyName> <includes> <include>${jacoco.include.pattern}</include> </includes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>@{jacoco.agent.argLine}</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <argLine>@{jacoco.agent.it.argLine}</argLine> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>