META-INF.maven.net.java.dev.activeobjects.activeobjects-core.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of activeobjects Show documentation
Show all versions of activeobjects Show documentation
This is the full Active Objects library, if you don't know which one to use, you probably want this one.
<?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>net.java.dev.activeobjects</groupId> <artifactId>activeobjects-parent</artifactId> <version>5.2.1-c99c271be</version> </parent> <artifactId>activeobjects-core</artifactId> <name>Active Objects - Core</name> <description> This is the core library for Active Objects. It is generic and can be embedded in any environment. As such it is generic and won't contain all connection pooling, etc. </description> <properties> <sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/../${jacoco.report.file}</sonar.coverage.jacoco.xmlReportPaths> <atlassian.profiling.version>3.6.1</atlassian.profiling.version> <atlassian.plugins.version>7.0.0</atlassian.plugins.version> </properties> <dependencies> <dependency> <groupId>com.atlassian.profiling</groupId> <artifactId>atlassian-profiling</artifactId> <version>${atlassian.profiling.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.atlassian.profiling</groupId> <artifactId>atlassian-profiling-micrometer</artifactId> <version>${atlassian.profiling.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.atlassian.plugins</groupId> <artifactId>atlassian-plugins-api</artifactId> <version>${atlassian.plugins.version}</version> <scope>provided</scope> </dependency> <!-- test dependencies --> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>1.4</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <phase>generate-resources</phase> <goals> <goal>write-project-properties</goal> </goals> <configuration> <outputFile>src/project-config.properties</outputFile> </configuration> </execution> </executions> </plugin> </plugins> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>test</testSourceDirectory> <resources> <resource> <directory>src</directory> <includes> <include>**</include> </includes> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources> <testResources> <testResource> <directory>test</directory> <filtering>true</filtering> <includes> <include>**</include> </includes> <excludes> <exclude>**/*.java</exclude> </excludes> </testResource> </testResources> </build> </project>