wix-oss-java-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.wix</groupId> <artifactId>wix-oss-java-parent</artifactId> <version>0.48.0</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>com.wix</groupId> <artifactId>wix-oss-java-parent</artifactId> <version>0.48.0</version> <packaging>pom</packaging> <name>WOJ</name> <description> The Parent for all Wix Java Open Source projects. This POM artifact should be the parent for all Wix Java open source projects. In addition to the "base" Parent, it includes the various (common) Java related Maven plugins and versions, and common dependencies. </description> <url>https://github.com/wix/wix-oss-parents</url> <parent> <groupId>com.wix</groupId> <artifactId>wix-oss-parent</artifactId> <version>0.48.0</version> <relativePath>../wix-oss-parent/pom.xml</relativePath> </parent> <scm> <url>https://github.com/wix/wix-oss-parents</url> <connection>scm:git:git://github.com/wix/wix-oss-parents.git</connection> <developerConnection>scm:git:git@github.com:wix/wix-oss-parents.git</developerConnection> <tag>0.48.0</tag> </scm> <developers> <developer> <name>Ohad Raz</name> <email>ohadr@wix.com</email> <roles> <role>owner</role> </roles> </developer> <developer> <name>Igal Harel</name> <email>igalh@wix.com</email> <roles> <role>owner</role> </roles> </developer> <developer> <name>Dima Goltsman</name> <email>dimitrig@wix.com</email> <roles> <role>developer</role> </roles> </developer> <developer> <name>Shachar Ancheloivch</name> <email>shacharan@wix.com</email> <roles> <role>developer</role> </roles> </developer> </developers> <properties> <maven.compiler.plugin.version>3.5.1</maven.compiler.plugin.version> <maven.surefire.plugin.version>2.19.1</maven.surefire.plugin.version> <maven.failsafe.plugin.version>2.19.1</maven.failsafe.plugin.version> <build.helper.maven.plugin.version>1.10</build.helper.maven.plugin.version> <java.source.version>1.8</java.source.version> <java.target.version>1.8</java.target.version> </properties> <build> <testResources> <testResource> <directory>${project.basedir}/src/test/resources</directory> </testResource> <testResource> <directory>${project.basedir}/src/it/resources</directory> </testResource> <testResource> <directory>${project.basedir}/src/e2e/resources</directory> </testResource> </testResources> <pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>${build.helper.maven.plugin.version}</version> <executions> <execution> <id>add-resource</id> <phase>generate-test-sources</phase> <goals> <goal>add-test-resource</goal> </goals> <configuration> <resources> <resource> <directory>src/it/resources</directory> </resource> <resource> <directory>src/e2e/resources</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven.failsafe.plugin.version}</version> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> <configuration> <summaryFile>${project.build.directory}/failsafe-reports/failsafe-summary.xml</summaryFile> <includes> <include>**/*IT.java</include> <include>**/*E2E.java</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.plugin.version}</version> <configuration> <source>${java.source.version}</source> <target>${java.target.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>sign-artifacts</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> </plugins> </build> </profile> </profiles> </project>