difido-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>il.co.top-q.difido</groupId> <artifactId>difido-parent</artifactId> <version>3.1.01</version> </dependency>
<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>il.co.top-q.difido</groupId> <artifactId>difido-parent</artifactId> <version>3.1.01</version> <name>Difido Parent</name> <packaging>pom</packaging> <organization> <name>Top-Q</name> </organization> <description>This project aims to provide a generic implementation for HTML test reports.</description> <url>https://github.com/Top-Q/difido-reports/wiki</url> <developers> <developer> <name>Itai Agmon</name> <email>itai.agmon@top-q.co.il</email> <organization>Top-Q</organization> <organizationUrl>https://matrix-testing.co.il/topq/</organizationUrl> </developer> </developers> <licenses> <license> <name>Apache License, Version 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> <scm> <connection>scm:git:git://github.com/Top-Q/difido-reports.git</connection> <developerConnection>scm:git:ssh://github.com:Top-Q/difido-reports.git</developerConnection> <url>http://github.com/Top-Q/difido-reports/tree/master</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <topq.repository.rootUrl>http://maven.top-q.co.il</topq.repository.rootUrl> <jsystem.version>6.1.11</jsystem.version> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <build> <plugins> <plugin> <artifactId>maven-site-plugin</artifactId> <version>4.0.0-M4</version> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.3.1</version> <configuration> <createChecksum>true</createChecksum> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-gpg-plugin --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.7</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> <modules> <module>../difido-reports-common</module> <module>../binders/difido-testng</module> </modules> </profile> <profile> <id>default</id> <activation> <activeByDefault>true</activeByDefault> </activation> <modules> <module>../difido-reports-common</module> <module>../server/difido-server-plugins-common</module> <module>../server/difido-server</module> <module>../binders/difido-testng</module> <module>../binders/difido-generic-binder</module> <module>../examples/jsystem-example/so-project</module> <module>../examples/testng-example</module> <module>../utils/metadata-recovery-utility</module> </modules> </profile> </profiles> <dependencyManagement> <dependencies> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.14.3</version> </dependency> </dependencies> </dependencyManagement> </project>