< prev index next >

./pom.xml

Print this page

        

*** 23,43 **** Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA or visit www.oracle.com if you need additional information or have any questions. --> <modelVersion>4.0.0</modelVersion> ! <groupId>org.jemmy.v3</groupId> ! <artifactId>Jemmy</artifactId> ! <version>1.0</version> <packaging>pom</packaging> <modules> <module>./core/JemmyCore</module> <module>./core/JemmyAWTInput</module> <module>./core/JemmyBrowser</module> <module>./SWT/JemmySWT</module> </modules> <properties> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <changeSet>0</changeSet> --- 23,64 ---- Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA or visit www.oracle.com if you need additional information or have any questions. --> <modelVersion>4.0.0</modelVersion> ! <groupId>org.adoptopenjdk</groupId> ! <artifactId>jemmy</artifactId> ! <version>${revision}</version> <packaging>pom</packaging> + <name>${project.groupId}:${project.artifactId}</name> + <description>UI test automation library</description> + <url>http://openjdk.java.net/projects/code-tools</url> + <licenses> + <license> + <name>GNU General Public License</name> + <url>http://www.gnu.org/licenses/gpl2.html</url> + </license> + </licenses> + <developers> + <developer> + <organization>Oracle</organization> + <organizationUrl>http://www.oracle.com</organizationUrl> + </developer> + </developers> + <scm> + <connection>scm:hg:http://hg.openjdk.java.net/code-tools/jemmy/v3</connection> + <developerConnection>scm:hg:http://hg.openjdk.java.net/code-tools/jemmy/v3</developerConnection> + <url>http://hg.openjdk.java.net/code-tools/jemmy/v3</url> + </scm> <modules> <module>./core/JemmyCore</module> <module>./core/JemmyAWTInput</module> <module>./core/JemmyBrowser</module> <module>./SWT/JemmySWT</module> </modules> <properties> + <revision>1.0.0</revision> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <changeSet>0</changeSet>
*** 63,72 **** --- 84,103 ---- <artifactId>testng</artifactId> <version>6.14.2</version> <scope>test</scope> </dependency> </dependencies> + <distributionManagement> + <snapshotRepository> + <id>ossrh</id> + <url>https://oss.sonatype.org/content/repositories/snapshots</url> + </snapshotRepository> + <repository> + <id>ossrh</id> + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> + </repository> + </distributionManagement> <build> <sourceDirectory>./src</sourceDirectory> <testSourceDirectory>./test</testSourceDirectory> <resources> <resource>
*** 98,113 **** <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> <configuration> <archive> <manifest> ! <mainClass>${version.class}</mainClass> </manifest> </archive> <excludes> <exclude>**/*.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </project> --- 129,184 ---- <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> <configuration> <archive> <manifest> ! <mainClass>${project.version.class}</mainClass> </manifest> </archive> <excludes> <exclude>**/*.java</exclude> </excludes> </configuration> </plugin> + <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> + <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> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <version>1.5</version> + <executions> + <execution> + <id>sign-artifacts</id> + <phase>verify</phase> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> </project>
< prev index next >