|
1 | | -<?xml version="1.0" encoding="UTF-8"?> |
2 | | - |
3 | | -<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"> |
4 | | - <modelVersion>4.0.0</modelVersion> |
5 | | - <groupId>com.assertthat</groupId> |
6 | | - <artifactId>selenium-shutterbug</artifactId> |
7 | | - <version>0.9.3-SNAPSHOT</version> |
8 | | - <name>selenium-shutterbug</name> |
9 | | - <description>Utility library to create customized screenshots using Selenium WebDriver and Java AWT</description> |
10 | | - <url>http://www.assertthat.com</url> |
11 | | - <properties> |
12 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
13 | | - <maven.compiler.source>1.8</maven.compiler.source> |
14 | | - <maven.compiler.target>1.8</maven.compiler.target> |
15 | | - </properties> |
16 | | - <licenses> |
17 | | - <license> |
18 | | - <name>MIT License</name> |
19 | | - <url>http://www.opensource.org/licenses/mit-license.php</url> |
20 | | - <distribution>repo</distribution> |
21 | | - </license> |
22 | | - </licenses> |
23 | | - <scm> |
24 | | - <url>https://github.com/assertthat/selenium-shutterbug</url> |
25 | | - <connection>scm:git:git://github.com/assertthat/selenium-shutterbug.git</connection> |
26 | | - <developerConnection>scm:git:git@github.com:assertthat/selenium-shutterbug.git</developerConnection> |
27 | | - <tag>v0.9.1</tag> |
28 | | - </scm> |
29 | | - <developers> |
30 | | - <developer> |
31 | | - <id>glib-briia</id> |
32 | | - <name>Glib Briia</name> |
33 | | - <email>glib@assertthat.com</email> |
34 | | - </developer> |
35 | | - </developers> |
36 | | - <dependencies> |
37 | | - <dependency> |
38 | | - <groupId>junit</groupId> |
39 | | - <artifactId>junit</artifactId> |
40 | | - <version>4.11</version> |
41 | | - <scope>test</scope> |
42 | | - </dependency> |
43 | | - <dependency> |
44 | | - <groupId>org.seleniumhq.selenium</groupId> |
45 | | - <artifactId>selenium-java</artifactId> |
46 | | - <version>3.141.59</version> |
47 | | - <scope>compile</scope> |
48 | | - </dependency> |
49 | | - <dependency> |
50 | | - <groupId>commons-io</groupId> |
51 | | - <artifactId>commons-io</artifactId> |
52 | | - <version>2.6</version> |
53 | | - </dependency> |
54 | | - <dependency> |
55 | | - <groupId>org.projectlombok</groupId> |
56 | | - <artifactId>lombok</artifactId> |
57 | | - <version>1.18.8</version> |
58 | | - </dependency> |
59 | | - <dependency> |
60 | | - <groupId>com.github.zafarkhaja</groupId> |
61 | | - <artifactId>java-semver</artifactId> |
62 | | - <version>0.9.0</version> |
63 | | - </dependency> |
64 | | - </dependencies> |
65 | | - |
66 | | - <build> |
67 | | - <plugins> |
68 | | - <plugin> |
69 | | - <groupId>org.sonatype.plugins</groupId> |
70 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
71 | | - <version>1.6.6</version> |
72 | | - <extensions>true</extensions> |
73 | | - <configuration> |
74 | | - <serverId>ossrh</serverId> |
75 | | - <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
76 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
77 | | - </configuration> |
78 | | - </plugin> |
79 | | - <plugin> |
80 | | - <groupId>org.apache.maven.plugins</groupId> |
81 | | - <artifactId>maven-release-plugin</artifactId> |
82 | | - <version>2.5.3</version> |
83 | | - </plugin> |
84 | | - </plugins> |
85 | | - </build> |
86 | | - <distributionManagement> |
87 | | - <snapshotRepository> |
88 | | - <id>ossrh</id> |
89 | | - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
90 | | - </snapshotRepository> |
91 | | - </distributionManagement> |
92 | | - <profiles> |
93 | | - <profile> |
94 | | - <id>sign</id> |
95 | | - <build> |
96 | | - <plugins> |
97 | | - <plugin> |
98 | | - <groupId>org.apache.maven.plugins</groupId> |
99 | | - <artifactId>maven-gpg-plugin</artifactId> |
100 | | - <version>1.6</version> |
101 | | - <executions> |
102 | | - <execution> |
103 | | - <id>sign-artifacts</id> |
104 | | - <phase>verify</phase> |
105 | | - <goals> |
106 | | - <goal>sign</goal> |
107 | | - </goals> |
108 | | - </execution> |
109 | | - </executions> |
110 | | - </plugin> |
111 | | - </plugins> |
112 | | - </build> |
113 | | - </profile> |
114 | | - <profile> |
115 | | - <id>build-extras</id> |
116 | | - <activation> |
117 | | - <activeByDefault>true</activeByDefault> |
118 | | - </activation> |
119 | | - <build> |
120 | | - <plugins> |
121 | | - <plugin> |
122 | | - <groupId>org.apache.maven.plugins</groupId> |
123 | | - <artifactId>maven-source-plugin</artifactId> |
124 | | - <version>2.4</version> |
125 | | - <executions> |
126 | | - <execution> |
127 | | - <id>attach-sources</id> |
128 | | - <goals> |
129 | | - <goal>jar-no-fork</goal> |
130 | | - </goals> |
131 | | - </execution> |
132 | | - </executions> |
133 | | - </plugin> |
134 | | - <plugin> |
135 | | - <groupId>org.apache.maven.plugins</groupId> |
136 | | - <artifactId>maven-javadoc-plugin</artifactId> |
137 | | - <version>2.10.3</version> |
138 | | - <executions> |
139 | | - <execution> |
140 | | - <id>attach-javadocs</id> |
141 | | - <goals> |
142 | | - <goal>jar</goal> |
143 | | - </goals> |
144 | | - </execution> |
145 | | - </executions> |
146 | | - </plugin> |
147 | | - </plugins> |
148 | | - </build> |
149 | | - </profile> |
150 | | - </profiles> |
151 | | -</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<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"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <groupId>com.assertthat</groupId> |
| 6 | + <artifactId>selenium-shutterbug</artifactId> |
| 7 | + <version>0.9.3</version> |
| 8 | + <name>selenium-shutterbug</name> |
| 9 | + <description>Utility library to create customized screenshots using Selenium WebDriver and Java AWT</description> |
| 10 | + <url>http://www.assertthat.com</url> |
| 11 | + <properties> |
| 12 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 13 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 14 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 15 | + </properties> |
| 16 | + <licenses> |
| 17 | + <license> |
| 18 | + <name>MIT License</name> |
| 19 | + <url>http://www.opensource.org/licenses/mit-license.php</url> |
| 20 | + <distribution>repo</distribution> |
| 21 | + </license> |
| 22 | + </licenses> |
| 23 | + <scm> |
| 24 | + <url>https://github.com/assertthat/selenium-shutterbug</url> |
| 25 | + <connection>scm:git:git://github.com/assertthat/selenium-shutterbug.git</connection> |
| 26 | + <developerConnection>scm:git:git@github.com:assertthat/selenium-shutterbug.git</developerConnection> |
| 27 | + <tag>v9.0.3</tag> |
| 28 | + </scm> |
| 29 | + <developers> |
| 30 | + <developer> |
| 31 | + <id>glib-briia</id> |
| 32 | + <name>Glib Briia</name> |
| 33 | + <email>glib@assertthat.com</email> |
| 34 | + </developer> |
| 35 | + </developers> |
| 36 | + <dependencies> |
| 37 | + <dependency> |
| 38 | + <groupId>junit</groupId> |
| 39 | + <artifactId>junit</artifactId> |
| 40 | + <version>4.11</version> |
| 41 | + <scope>test</scope> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>org.seleniumhq.selenium</groupId> |
| 45 | + <artifactId>selenium-java</artifactId> |
| 46 | + <version>3.141.59</version> |
| 47 | + <scope>compile</scope> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>commons-io</groupId> |
| 51 | + <artifactId>commons-io</artifactId> |
| 52 | + <version>2.6</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.projectlombok</groupId> |
| 56 | + <artifactId>lombok</artifactId> |
| 57 | + <version>1.18.8</version> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>com.github.zafarkhaja</groupId> |
| 61 | + <artifactId>java-semver</artifactId> |
| 62 | + <version>0.9.0</version> |
| 63 | + </dependency> |
| 64 | + </dependencies> |
| 65 | + |
| 66 | + <build> |
| 67 | + <plugins> |
| 68 | + <plugin> |
| 69 | + <groupId>org.sonatype.plugins</groupId> |
| 70 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 71 | + <version>1.6.6</version> |
| 72 | + <extensions>true</extensions> |
| 73 | + <configuration> |
| 74 | + <serverId>ossrh</serverId> |
| 75 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 76 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 77 | + </configuration> |
| 78 | + </plugin> |
| 79 | + <plugin> |
| 80 | + <groupId>org.apache.maven.plugins</groupId> |
| 81 | + <artifactId>maven-release-plugin</artifactId> |
| 82 | + <version>2.5.3</version> |
| 83 | + </plugin> |
| 84 | + </plugins> |
| 85 | + </build> |
| 86 | + <distributionManagement> |
| 87 | + <snapshotRepository> |
| 88 | + <id>ossrh</id> |
| 89 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 90 | + </snapshotRepository> |
| 91 | + </distributionManagement> |
| 92 | + <profiles> |
| 93 | + <profile> |
| 94 | + <id>sign</id> |
| 95 | + <build> |
| 96 | + <plugins> |
| 97 | + <plugin> |
| 98 | + <groupId>org.apache.maven.plugins</groupId> |
| 99 | + <artifactId>maven-gpg-plugin</artifactId> |
| 100 | + <version>1.6</version> |
| 101 | + <executions> |
| 102 | + <execution> |
| 103 | + <id>sign-artifacts</id> |
| 104 | + <phase>verify</phase> |
| 105 | + <goals> |
| 106 | + <goal>sign</goal> |
| 107 | + </goals> |
| 108 | + </execution> |
| 109 | + </executions> |
| 110 | + </plugin> |
| 111 | + </plugins> |
| 112 | + </build> |
| 113 | + </profile> |
| 114 | + <profile> |
| 115 | + <id>build-extras</id> |
| 116 | + <activation> |
| 117 | + <activeByDefault>true</activeByDefault> |
| 118 | + </activation> |
| 119 | + <build> |
| 120 | + <plugins> |
| 121 | + <plugin> |
| 122 | + <groupId>org.apache.maven.plugins</groupId> |
| 123 | + <artifactId>maven-source-plugin</artifactId> |
| 124 | + <version>2.4</version> |
| 125 | + <executions> |
| 126 | + <execution> |
| 127 | + <id>attach-sources</id> |
| 128 | + <goals> |
| 129 | + <goal>jar-no-fork</goal> |
| 130 | + </goals> |
| 131 | + </execution> |
| 132 | + </executions> |
| 133 | + </plugin> |
| 134 | + <plugin> |
| 135 | + <groupId>org.apache.maven.plugins</groupId> |
| 136 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 137 | + <version>2.10.3</version> |
| 138 | + <executions> |
| 139 | + <execution> |
| 140 | + <id>attach-javadocs</id> |
| 141 | + <goals> |
| 142 | + <goal>jar</goal> |
| 143 | + </goals> |
| 144 | + </execution> |
| 145 | + </executions> |
| 146 | + </plugin> |
| 147 | + </plugins> |
| 148 | + </build> |
| 149 | + </profile> |
| 150 | + </profiles> |
| 151 | +</project> |
0 commit comments