core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.morphia.morphia</groupId> <artifactId>core</artifactId> <version>1.6.1</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>dev.morphia.morphia</groupId> <artifactId>morphia-parent</artifactId> <version>1.6.1</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>core</artifactId> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>1.9.1</version> <executions> <execution> <id>add-test-source</id> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>src/test/deprecated</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.antwerkz.github</groupId> <artifactId>issues-maven-plugin</artifactId> <version>1.0.3</version> <executions> <execution> <id>issues</id> <goals> <goal>generate</goal> </goals> <phase>deploy</phase> </execution> </executions> <configuration> <repository>MorphiaOrg/morphia</repository> <javadocUrl>https://morphia.dev/morphia/1.6/javadoc/index.html</javadocUrl> </configuration> </plugin> <plugin> <groupId>${project.groupId}</groupId> <artifactId>build-plugins</artifactId> <version>${project.version}</version> <executions> <execution> <id>revapi-config</id> <goals> <goal>revapi-config</goal> </goals> <phase>generate-resources</phase> </execution> </executions> <configuration> <input>../config/revapi-input.json</input> <output>../config/revapi.json</output> </configuration> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>copy-license</id> <phase>generate-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.outputDirectory}</outputDirectory> <resources> <resource> <directory>${project.basedir}/..</directory> <includes> <include>LICENSE.txt</include> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongodb-driver-sync</artifactId> <version>${driver.version}</version> </dependency> <dependency> <groupId>org.mongodb</groupId> <artifactId>mongodb-driver-legacy</artifactId> <version>${driver.version}</version> </dependency> <dependency> <groupId>com.thoughtworks.proxytoys</groupId> <artifactId>proxytoys</artifactId> <version>1.0</version> </dependency> <dependency> <groupId>io.github.classgraph</groupId> <artifactId>classgraph</artifactId> <version>4.8.78</version> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib-nodep</artifactId> <version>3.3.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.zeroturnaround</groupId> <artifactId>zt-exec</artifactId> <version>${zt.exec.version}</version> <scope>test</scope> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.jayway.awaitility</groupId> <artifactId>awaitility</artifactId> <version>${awaitility.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.skyscreamer</groupId> <artifactId>jsonassert</artifactId> <version>${json.assert.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>com.sun.activation</groupId> <artifactId>javax.activation</artifactId> <version>1.2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j18-impl</artifactId> <version>2.11.1</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>quality</id> <activation> <property> <name>quality</name> </property> </activation> <properties> <maven.test.skip>true</maven.test.skip> </properties> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>checkstyle</id> <goals> <goal>check</goal> </goals> <phase>verify</phase> </execution> </executions> <configuration> <configLocation>../config/checkstyle.xml</configLocation> <suppressionsLocation>../config/checkstyle-exclude.xml</suppressionsLocation> <encoding>UTF-8</encoding> <linkXRef>false</linkXRef> </configuration> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>3.1.12.2</version> <executions> <execution> <id>spotbugs</id> <goals> <goal>check</goal> </goals> <phase>verify</phase> </execution> </executions> <configuration> <spotbugsXmlOutputDirectory>target/spotbugs</spotbugsXmlOutputDirectory> <excludeFilterFile>../config/findbugs-exclude.xml</excludeFilterFile> </configuration> </plugin> <plugin> <groupId>org.revapi</groupId> <artifactId>revapi-maven-plugin</artifactId> <version>0.11.2</version> <dependencies> <dependency> <groupId>org.revapi</groupId> <artifactId>revapi-java</artifactId> <version>${revapi-java.version}</version> </dependency> </dependencies> <executions> <execution> <id>revapi</id> <goals> <goal>check</goal> </goals> <phase>verify</phase> </execution> </executions> <configuration> <failBuildOnProblemsFound>true</failBuildOnProblemsFound> <analysisConfigurationFiles> <analysisConfigurationFile>../config/revapi.json</analysisConfigurationFile> </analysisConfigurationFiles> <analysisConfiguration> <revapi.semver.ignore> <enabled>true</enabled> <versionIncreaseAllows> <major>breaking</major> <minor>nonBreaking</minor> <patch>equivalent</patch> </versionIncreaseAllows> </revapi.semver.ignore> </analysisConfiguration> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>