Skip to content

Commit c308675

Browse files
committed
[maven-release-plugin] prepare release createsend-java-7.0.1
1 parent 8ff5e40 commit c308675

1 file changed

Lines changed: 161 additions & 161 deletions

File tree

pom.xml

Lines changed: 161 additions & 161 deletions
Original file line numberDiff line numberDiff line change
@@ -1,161 +1,161 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.createsend</groupId>
5-
<artifactId>createsend-java</artifactId>
6-
<version>7.0.1-SNAPSHOT</version>
7-
<name>createsend-java</name>
8-
<description>A Java library which implements the complete functionality of the Campaign Monitor API.</description>
9-
<url>http://campaignmonitor.github.io/createsend-java/</url>
10-
<licenses>
11-
<license>
12-
<name>The MIT License</name>
13-
<url>https://raw.github.com/campaignmonitor/createsend-java/master/LICENSE</url>
14-
<distribution>repo</distribution>
15-
</license>
16-
</licenses>
17-
<repositories />
18-
<dependencies>
19-
<dependency>
20-
<groupId>com.sun.jersey</groupId>
21-
<artifactId>jersey-json</artifactId>
22-
<version>1.17.1</version>
23-
<scope>compile</scope>
24-
</dependency>
25-
<dependency>
26-
<groupId>com.sun.jersey</groupId>
27-
<artifactId>jersey-client</artifactId>
28-
<version>1.17.1</version>
29-
<scope>compile</scope>
30-
</dependency>
31-
<dependency>
32-
<groupId>com.sun.jersey</groupId>
33-
<artifactId>jersey-core</artifactId>
34-
<version>1.17.1</version>
35-
<scope>compile</scope>
36-
</dependency>
37-
<dependency>
38-
<groupId>com.fasterxml.jackson.core</groupId>
39-
<artifactId>jackson-annotations</artifactId>
40-
<version>2.10.2</version>
41-
<scope>compile</scope>
42-
</dependency>
43-
<dependency>
44-
<groupId>com.fasterxml.jackson.jaxrs</groupId>
45-
<artifactId>jackson-jaxrs-json-provider</artifactId>
46-
<version>2.10.2</version>
47-
<scope>compile</scope>
48-
</dependency>
49-
<dependency>
50-
<groupId>com.fasterxml.jackson.core</groupId>
51-
<artifactId>jackson-databind</artifactId>
52-
<version>2.10.5.1</version>
53-
<scope>compile</scope>
54-
</dependency>
55-
<dependency>
56-
<groupId>commons-codec</groupId>
57-
<artifactId>commons-codec</artifactId>
58-
<version>1.10</version>
59-
</dependency>
60-
<dependency>
61-
<groupId>commons-io</groupId>
62-
<artifactId>commons-io</artifactId>
63-
<version>2.7</version>
64-
</dependency>
65-
</dependencies>
66-
67-
<scm>
68-
<connection>scm:git:git@github.com:campaignmonitor/createsend-java.git</connection>
69-
<developerConnection>scm:git:git@github.com:campaignmonitor/createsend-java.git</developerConnection>
70-
<url>https://github.com/campaignmonitor/createsend-java.git</url>
71-
<tag>HEAD</tag>
72-
</scm>
73-
74-
<developers>
75-
<developer>
76-
<id>jdennes</id>
77-
<name>James Dennes</name>
78-
<email>jdennes@gmail.com</email>
79-
</developer>
80-
<developer>
81-
<id>tobio</id>
82-
<name>Toby Brain</name>
83-
<email>tobio85@gmail.com</email>
84-
</developer>
85-
</developers>
86-
87-
<distributionManagement>
88-
<repository>
89-
<id>sonatype-nexus-staging</id>
90-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
91-
</repository>
92-
</distributionManagement>
93-
94-
<build>
95-
<sourceDirectory>src</sourceDirectory>
96-
<resources>
97-
<resource>
98-
<directory>src</directory>
99-
<excludes>
100-
<exclude>**/*.java</exclude>
101-
</excludes>
102-
</resource>
103-
</resources>
104-
<plugins>
105-
<plugin>
106-
<groupId>org.apache.maven.plugins</groupId>
107-
<artifactId>maven-compiler-plugin</artifactId>
108-
<version>2.3</version>
109-
<configuration>
110-
<source>1.7</source>
111-
<target>1.7</target>
112-
</configuration>
113-
</plugin>
114-
<plugin>
115-
<groupId>org.apache.maven.plugins</groupId>
116-
<artifactId>maven-javadoc-plugin</artifactId>
117-
<version>2.10.4</version>
118-
<configuration>
119-
<failOnError>false</failOnError>
120-
</configuration>
121-
</plugin>
122-
<plugin>
123-
<artifactId>maven-release-plugin</artifactId>
124-
<version>2.5.3</version>
125-
<configuration>
126-
<goals>deploy</goals>
127-
</configuration>
128-
</plugin>
129-
</plugins>
130-
</build>
131-
132-
<profiles>
133-
<profile>
134-
<id>release-sign-artifacts</id>
135-
<activation>
136-
<property>
137-
<name>performRelease</name>
138-
<value>true</value>
139-
</property>
140-
</activation>
141-
<build>
142-
<plugins>
143-
<plugin>
144-
<groupId>org.apache.maven.plugins</groupId>
145-
<artifactId>maven-gpg-plugin</artifactId>
146-
<version>1.6</version>
147-
<executions>
148-
<execution>
149-
<phase>install</phase>
150-
<goals>
151-
<goal>sign</goal>
152-
</goals>
153-
</execution>
154-
</executions>
155-
</plugin>
156-
</plugins>
157-
</build>
158-
</profile>
159-
</profiles>
160-
161-
</project>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.createsend</groupId>
5+
<artifactId>createsend-java</artifactId>
6+
<version>7.0.1</version>
7+
<name>createsend-java</name>
8+
<description>A Java library which implements the complete functionality of the Campaign Monitor API.</description>
9+
<url>http://campaignmonitor.github.io/createsend-java/</url>
10+
<licenses>
11+
<license>
12+
<name>The MIT License</name>
13+
<url>https://raw.github.com/campaignmonitor/createsend-java/master/LICENSE</url>
14+
<distribution>repo</distribution>
15+
</license>
16+
</licenses>
17+
<repositories />
18+
<dependencies>
19+
<dependency>
20+
<groupId>com.sun.jersey</groupId>
21+
<artifactId>jersey-json</artifactId>
22+
<version>1.17.1</version>
23+
<scope>compile</scope>
24+
</dependency>
25+
<dependency>
26+
<groupId>com.sun.jersey</groupId>
27+
<artifactId>jersey-client</artifactId>
28+
<version>1.17.1</version>
29+
<scope>compile</scope>
30+
</dependency>
31+
<dependency>
32+
<groupId>com.sun.jersey</groupId>
33+
<artifactId>jersey-core</artifactId>
34+
<version>1.17.1</version>
35+
<scope>compile</scope>
36+
</dependency>
37+
<dependency>
38+
<groupId>com.fasterxml.jackson.core</groupId>
39+
<artifactId>jackson-annotations</artifactId>
40+
<version>2.10.2</version>
41+
<scope>compile</scope>
42+
</dependency>
43+
<dependency>
44+
<groupId>com.fasterxml.jackson.jaxrs</groupId>
45+
<artifactId>jackson-jaxrs-json-provider</artifactId>
46+
<version>2.10.2</version>
47+
<scope>compile</scope>
48+
</dependency>
49+
<dependency>
50+
<groupId>com.fasterxml.jackson.core</groupId>
51+
<artifactId>jackson-databind</artifactId>
52+
<version>2.10.5.1</version>
53+
<scope>compile</scope>
54+
</dependency>
55+
<dependency>
56+
<groupId>commons-codec</groupId>
57+
<artifactId>commons-codec</artifactId>
58+
<version>1.10</version>
59+
</dependency>
60+
<dependency>
61+
<groupId>commons-io</groupId>
62+
<artifactId>commons-io</artifactId>
63+
<version>2.7</version>
64+
</dependency>
65+
</dependencies>
66+
67+
<scm>
68+
<connection>scm:git:git@github.com:campaignmonitor/createsend-java.git</connection>
69+
<developerConnection>scm:git:git@github.com:campaignmonitor/createsend-java.git</developerConnection>
70+
<url>https://github.com/campaignmonitor/createsend-java.git</url>
71+
<tag>createsend-java-7.0.1</tag>
72+
</scm>
73+
74+
<developers>
75+
<developer>
76+
<id>jdennes</id>
77+
<name>James Dennes</name>
78+
<email>jdennes@gmail.com</email>
79+
</developer>
80+
<developer>
81+
<id>tobio</id>
82+
<name>Toby Brain</name>
83+
<email>tobio85@gmail.com</email>
84+
</developer>
85+
</developers>
86+
87+
<distributionManagement>
88+
<repository>
89+
<id>sonatype-nexus-staging</id>
90+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
91+
</repository>
92+
</distributionManagement>
93+
94+
<build>
95+
<sourceDirectory>src</sourceDirectory>
96+
<resources>
97+
<resource>
98+
<directory>src</directory>
99+
<excludes>
100+
<exclude>**/*.java</exclude>
101+
</excludes>
102+
</resource>
103+
</resources>
104+
<plugins>
105+
<plugin>
106+
<groupId>org.apache.maven.plugins</groupId>
107+
<artifactId>maven-compiler-plugin</artifactId>
108+
<version>2.3</version>
109+
<configuration>
110+
<source>1.7</source>
111+
<target>1.7</target>
112+
</configuration>
113+
</plugin>
114+
<plugin>
115+
<groupId>org.apache.maven.plugins</groupId>
116+
<artifactId>maven-javadoc-plugin</artifactId>
117+
<version>2.10.4</version>
118+
<configuration>
119+
<failOnError>false</failOnError>
120+
</configuration>
121+
</plugin>
122+
<plugin>
123+
<artifactId>maven-release-plugin</artifactId>
124+
<version>2.5.3</version>
125+
<configuration>
126+
<goals>deploy</goals>
127+
</configuration>
128+
</plugin>
129+
</plugins>
130+
</build>
131+
132+
<profiles>
133+
<profile>
134+
<id>release-sign-artifacts</id>
135+
<activation>
136+
<property>
137+
<name>performRelease</name>
138+
<value>true</value>
139+
</property>
140+
</activation>
141+
<build>
142+
<plugins>
143+
<plugin>
144+
<groupId>org.apache.maven.plugins</groupId>
145+
<artifactId>maven-gpg-plugin</artifactId>
146+
<version>1.6</version>
147+
<executions>
148+
<execution>
149+
<phase>install</phase>
150+
<goals>
151+
<goal>sign</goal>
152+
</goals>
153+
</execution>
154+
</executions>
155+
</plugin>
156+
</plugins>
157+
</build>
158+
</profile>
159+
</profiles>
160+
161+
</project>

0 commit comments

Comments
 (0)