Skip to content

Commit fba125b

Browse files
author
Ajay Deshwal
committed
[maven-release-plugin] prepare release docusign-restclient-2.0.4
1 parent 8f3fbe8 commit fba125b

File tree

3 files changed

+133
-133
lines changed

3 files changed

+133
-133
lines changed

docusign-restclient-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>uk.co.techblue</groupId>
55
<artifactId>docusign-restclient</artifactId>
6-
<version>2.0.4-SNAPSHOT</version>
6+
<version>2.0.4</version>
77
</parent>
88
<artifactId>docusign-restclient-core</artifactId>
99
<name>Docusign RESTful client core</name>

docusign-restclient-dto/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>uk.co.techblue</groupId>
55
<artifactId>docusign-restclient</artifactId>
6-
<version>2.0.4-SNAPSHOT</version>
6+
<version>2.0.4</version>
77
</parent>
88
<artifactId>docusign-restclient-dto</artifactId>
99
<name>Docusign RESTful Client Data Transfer Objects</name>

pom.xml

Lines changed: 131 additions & 131 deletions
Original file line numberDiff line numberDiff line change
@@ -1,132 +1,132 @@
1-
<!-- Copyright 2012 Technology Blueprint Ltd Licensed under the Apache License,
2-
Version 2.0 (the "License"); you may not use this file except in compliance
3-
with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
4-
Unless required by applicable law or agreed to in writing, software distributed
5-
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
6-
OR CONDITIONS OF ANY KIND, either express or implied. See the License for
7-
the specific language governing permissions and limitations under the License. -->
8-
9-
<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">
10-
<modelVersion>4.0.0</modelVersion>
11-
<parent>
12-
<groupId>org.sonatype.oss</groupId>
13-
<artifactId>oss-parent</artifactId>
14-
<version>9</version>
15-
</parent>
16-
<modules>
17-
<module>docusign-restclient-dto</module>
18-
<module>docusign-restclient-core</module>
19-
</modules>
20-
<groupId>uk.co.techblue</groupId>
21-
<artifactId>docusign-restclient</artifactId>
22-
<version>2.0.4-SNAPSHOT</version>
23-
<name>Docusign RESTful client</name>
24-
<packaging>pom</packaging>
25-
<description>A client library to communicate with docusign restful services </description>
26-
<url>http://www.technologyblueprint.co.uk/</url>
27-
28-
<properties>
29-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30-
<resteasy.version>2.3.5.Final</resteasy.version>
31-
<!--resteasy.version>3.0.8.Final</resteasy.version-->
32-
<jackson.version>1.9.9</jackson.version>
33-
</properties>
34-
35-
<licenses>
36-
<license>
37-
<name>The Apache Software License, Version 2.0</name>
38-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
39-
<distribution>repo</distribution>
40-
</license>
41-
</licenses>
42-
43-
<build>
44-
<plugins>
45-
<plugin>
46-
<groupId>org.apache.maven.plugins</groupId>
47-
<artifactId>maven-compiler-plugin</artifactId>
48-
<version>3.0</version>
49-
<configuration>
50-
<source>1.6</source>
51-
<target>1.6</target>
52-
<encoding>UTF-8</encoding>
53-
</configuration>
54-
</plugin>
55-
</plugins>
56-
</build>
57-
58-
<dependencyManagement>
59-
<dependencies>
60-
<dependency>
61-
<groupId>org.jboss.resteasy</groupId>
62-
<artifactId>resteasy-jaxrs</artifactId>
63-
<version>${resteasy.version}</version>
64-
</dependency>
65-
<dependency>
66-
<groupId>org.jboss.resteasy</groupId>
67-
<artifactId>resteasy-jackson-provider</artifactId>
68-
<version>${resteasy.version}</version>
69-
</dependency>
70-
<dependency>
71-
<groupId>org.jboss.resteasy</groupId>
72-
<artifactId>resteasy-multipart-provider</artifactId>
73-
<version>${resteasy.version}</version>
74-
</dependency>
75-
<dependency>
76-
<groupId>org.codehaus.jackson</groupId>
77-
<artifactId>jackson-mapper-asl</artifactId>
78-
<version>${jackson.version}</version>
79-
</dependency>
80-
<dependency>
81-
<groupId>org.jboss.resteasy</groupId>
82-
<artifactId>jaxrs-api</artifactId>
83-
<version>${resteasy.version}</version>
84-
</dependency>
85-
<dependency>
86-
<groupId>uk.co.techblue</groupId>
87-
<artifactId>docusign-restclient-dto</artifactId>
88-
<version>${project.version}</version>
89-
</dependency>
90-
<dependency>
91-
<groupId>org.apache.commons</groupId>
92-
<artifactId>commons-lang3</artifactId>
93-
<version>3.1</version>
94-
</dependency>
95-
</dependencies>
96-
</dependencyManagement>
97-
98-
<scm>
99-
<connection>scm:git:git@github.com:techblue/docusign-restclient.git</connection>
100-
<developerConnection>scm:git:git@github.com:techblue/docusign-restclient.git</developerConnection>
101-
<url>https://github.com/techblue/docusign-restclient</url>
102-
</scm>
103-
104-
<developers>
105-
<developer>
106-
<name>Ajay Deshwal</name>
107-
<email>ajay.deshwal@techblue.co.uk</email>
108-
<timezone>+5:30</timezone>
109-
<roles>
110-
<role>Project Lead</role>
111-
</roles>
112-
</developer>
113-
<developer>
114-
<name>Dheeraj Arora</name>
115-
<email>dheeraj.arora@techblue.co.uk</email>
116-
<timezone>+5:30</timezone>
117-
<roles>
118-
<role>Developer</role>
119-
</roles>
120-
</developer>
121-
</developers>
122-
<contributors>
123-
<contributor>
124-
<name>Vik Tara</name>
125-
<email>vik@propco.co.uk</email>
126-
<timezone>0</timezone>
127-
<roles>
128-
<role>Project Owner</role>
129-
</roles>
130-
</contributor>
131-
</contributors>
1+
<!-- Copyright 2012 Technology Blueprint Ltd Licensed under the Apache License,
2+
Version 2.0 (the "License"); you may not use this file except in compliance
3+
with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
4+
Unless required by applicable law or agreed to in writing, software distributed
5+
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
6+
OR CONDITIONS OF ANY KIND, either express or implied. See the License for
7+
the specific language governing permissions and limitations under the License. -->
8+
9+
<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">
10+
<modelVersion>4.0.0</modelVersion>
11+
<parent>
12+
<groupId>org.sonatype.oss</groupId>
13+
<artifactId>oss-parent</artifactId>
14+
<version>9</version>
15+
</parent>
16+
<modules>
17+
<module>docusign-restclient-dto</module>
18+
<module>docusign-restclient-core</module>
19+
</modules>
20+
<groupId>uk.co.techblue</groupId>
21+
<artifactId>docusign-restclient</artifactId>
22+
<version>2.0.4</version>
23+
<name>Docusign RESTful client</name>
24+
<packaging>pom</packaging>
25+
<description>A client library to communicate with docusign restful services </description>
26+
<url>http://www.technologyblueprint.co.uk/</url>
27+
28+
<properties>
29+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
30+
<resteasy.version>2.3.5.Final</resteasy.version>
31+
<!--resteasy.version>3.0.8.Final</resteasy.version-->
32+
<jackson.version>1.9.9</jackson.version>
33+
</properties>
34+
35+
<licenses>
36+
<license>
37+
<name>The Apache Software License, Version 2.0</name>
38+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
39+
<distribution>repo</distribution>
40+
</license>
41+
</licenses>
42+
43+
<build>
44+
<plugins>
45+
<plugin>
46+
<groupId>org.apache.maven.plugins</groupId>
47+
<artifactId>maven-compiler-plugin</artifactId>
48+
<version>3.0</version>
49+
<configuration>
50+
<source>1.6</source>
51+
<target>1.6</target>
52+
<encoding>UTF-8</encoding>
53+
</configuration>
54+
</plugin>
55+
</plugins>
56+
</build>
57+
58+
<dependencyManagement>
59+
<dependencies>
60+
<dependency>
61+
<groupId>org.jboss.resteasy</groupId>
62+
<artifactId>resteasy-jaxrs</artifactId>
63+
<version>${resteasy.version}</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>org.jboss.resteasy</groupId>
67+
<artifactId>resteasy-jackson-provider</artifactId>
68+
<version>${resteasy.version}</version>
69+
</dependency>
70+
<dependency>
71+
<groupId>org.jboss.resteasy</groupId>
72+
<artifactId>resteasy-multipart-provider</artifactId>
73+
<version>${resteasy.version}</version>
74+
</dependency>
75+
<dependency>
76+
<groupId>org.codehaus.jackson</groupId>
77+
<artifactId>jackson-mapper-asl</artifactId>
78+
<version>${jackson.version}</version>
79+
</dependency>
80+
<dependency>
81+
<groupId>org.jboss.resteasy</groupId>
82+
<artifactId>jaxrs-api</artifactId>
83+
<version>${resteasy.version}</version>
84+
</dependency>
85+
<dependency>
86+
<groupId>uk.co.techblue</groupId>
87+
<artifactId>docusign-restclient-dto</artifactId>
88+
<version>${project.version}</version>
89+
</dependency>
90+
<dependency>
91+
<groupId>org.apache.commons</groupId>
92+
<artifactId>commons-lang3</artifactId>
93+
<version>3.1</version>
94+
</dependency>
95+
</dependencies>
96+
</dependencyManagement>
97+
98+
<scm>
99+
<connection>scm:git:git@github.com:techblue/docusign-restclient.git</connection>
100+
<developerConnection>scm:git:git@github.com:techblue/docusign-restclient.git</developerConnection>
101+
<url>https://github.com/techblue/docusign-restclient</url>
102+
</scm>
103+
104+
<developers>
105+
<developer>
106+
<name>Ajay Deshwal</name>
107+
<email>ajay.deshwal@techblue.co.uk</email>
108+
<timezone>+5:30</timezone>
109+
<roles>
110+
<role>Project Lead</role>
111+
</roles>
112+
</developer>
113+
<developer>
114+
<name>Dheeraj Arora</name>
115+
<email>dheeraj.arora@techblue.co.uk</email>
116+
<timezone>+5:30</timezone>
117+
<roles>
118+
<role>Developer</role>
119+
</roles>
120+
</developer>
121+
</developers>
122+
<contributors>
123+
<contributor>
124+
<name>Vik Tara</name>
125+
<email>vik@propco.co.uk</email>
126+
<timezone>0</timezone>
127+
<roles>
128+
<role>Project Owner</role>
129+
</roles>
130+
</contributor>
131+
</contributors>
132132
</project>

0 commit comments

Comments
 (0)