Skip to content

Commit 0c7df4e

Browse files
committed
[maven-release-plugin] prepare release v2.1.0
1 parent 6b943ac commit 0c7df4e

File tree

4 files changed

+354
-354
lines changed

4 files changed

+354
-354
lines changed

pom.xml

Lines changed: 150 additions & 150 deletions
Original file line numberDiff line numberDiff line change
@@ -1,150 +1,150 @@
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-
6-
<groupId>br.com.cpqd.asr</groupId>
7-
<artifactId>recognizer-parent</artifactId>
8-
<version>2.0.8-SNAPSHOT</version>
9-
<packaging>pom</packaging>
10-
11-
<name>CPqD ASR Recognizer</name>
12-
<description>The Recognizer is an API for building applications using the CPqD ASR Server speech recognition features.</description>
13-
14-
<modules>
15-
<module>recognizer-protocol</module>
16-
<module>recognizer</module>
17-
<module>recognizer-examples</module>
18-
</modules>
19-
20-
<properties>
21-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22-
<javasdk.version>1.8</javasdk.version>
23-
<websocket.version>1.1</websocket.version>
24-
<junit.version>4.12</junit.version>
25-
<log4j.version>1.2.17</log4j.version>
26-
<sfl4j.version>1.7.30</sfl4j.version>
27-
<tyrus.version>1.17</tyrus.version>
28-
29-
<skipTests>true</skipTests>
30-
31-
<maven-release-plugin.version>3.0.0-M1</maven-release-plugin.version>
32-
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
33-
<maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version>
34-
<maven-jar-plugin.version>3.1.2</maven-jar-plugin.version>
35-
<maven-surefire-plugin.version>3.0.0-M3</maven-surefire-plugin.version>
36-
<maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version>
37-
</properties>
38-
39-
<dependencyManagement>
40-
<dependencies>
41-
<dependency>
42-
<groupId>com.fasterxml.jackson.core</groupId>
43-
<artifactId>jackson-databind</artifactId>
44-
<version>2.10.0.pr1</version>
45-
</dependency>
46-
<dependency>
47-
<groupId>com.fasterxml.jackson.dataformat</groupId>
48-
<artifactId>jackson-dataformat-xml</artifactId>
49-
<version>2.9.3</version>
50-
</dependency>
51-
<dependency>
52-
<groupId>javax.websocket</groupId>
53-
<artifactId>javax.websocket-api</artifactId>
54-
<version>${websocket.version}</version>
55-
</dependency>
56-
<dependency>
57-
<groupId>org.glassfish.tyrus</groupId>
58-
<artifactId>tyrus-client</artifactId>
59-
<version>${tyrus.version}</version>
60-
</dependency>
61-
<dependency>
62-
<groupId>org.glassfish.tyrus</groupId>
63-
<artifactId>tyrus-container-grizzly-client</artifactId>
64-
<version>${tyrus.version}</version>
65-
</dependency>
66-
<dependency>
67-
<groupId>org.slf4j</groupId>
68-
<artifactId>slf4j-api</artifactId>
69-
<version>${sfl4j.version}</version>
70-
</dependency>
71-
<dependency>
72-
<groupId>org.slf4j</groupId>
73-
<artifactId>slf4j-log4j12</artifactId>
74-
<version>${sfl4j.version}</version>
75-
</dependency>
76-
<dependency>
77-
<groupId>log4j</groupId>
78-
<artifactId>log4j</artifactId>
79-
<version>${log4j.version}</version>
80-
</dependency>
81-
</dependencies>
82-
</dependencyManagement>
83-
84-
<scm>
85-
<developerConnection>scm:git:ssh://[email protected]/CPqD/asr-sdk-java.git</developerConnection>
86-
<tag>HEAD</tag>
87-
</scm>
88-
89-
<build>
90-
<pluginManagement>
91-
<plugins>
92-
<plugin>
93-
<groupId>org.apache.maven.plugins</groupId>
94-
<artifactId>maven-compiler-plugin</artifactId>
95-
<version>${maven-compiler-plugin.version}</version>
96-
<configuration>
97-
<source>${javasdk.version}</source>
98-
<target>${javasdk.version}</target>
99-
</configuration>
100-
</plugin>
101-
102-
<plugin>
103-
<groupId>org.apache.maven.plugins</groupId>
104-
<artifactId>maven-surefire-plugin</artifactId>
105-
<version>${maven-surefire-plugin.version}</version>
106-
<configuration>
107-
<skipTests>${skipTests}</skipTests>
108-
</configuration>
109-
</plugin>
110-
111-
<plugin>
112-
<groupId>org.apache.maven.plugins</groupId>
113-
<artifactId>maven-release-plugin</artifactId>
114-
<version>${maven-release-plugin.version}</version>
115-
<configuration>
116-
<autoVersionSubmodules>true</autoVersionSubmodules>
117-
<tagNameFormat>v@{project.version}</tagNameFormat>
118-
</configuration>
119-
</plugin>
120-
</plugins>
121-
</pluginManagement>
122-
</build>
123-
124-
<developers>
125-
<developer>
126-
<name>Eduardo Yamamoto Baldin</name>
127-
<email>[email protected]</email>
128-
<timezone>America/Sao_Paulo</timezone>
129-
<roles>
130-
<role>architect</role>
131-
</roles>
132-
</developer>
133-
<developer>
134-
<name>Luis Augusto de Sa Pessoa</name>
135-
<timezone>America/Sao_Paulo</timezone>
136-
<roles>
137-
<role>committer</role>
138-
</roles>
139-
</developer>
140-
</developers>
141-
142-
<licenses>
143-
<license>
144-
<name>Apache License 2.0</name>
145-
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
146-
<distribution>repo</distribution>
147-
</license>
148-
</licenses>
149-
150-
</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+
6+
<groupId>br.com.cpqd.asr</groupId>
7+
<artifactId>recognizer-parent</artifactId>
8+
<version>2.1.0</version>
9+
<packaging>pom</packaging>
10+
11+
<name>CPqD ASR Recognizer</name>
12+
<description>The Recognizer is an API for building applications using the CPqD ASR Server speech recognition features.</description>
13+
14+
<modules>
15+
<module>recognizer-protocol</module>
16+
<module>recognizer</module>
17+
<module>recognizer-examples</module>
18+
</modules>
19+
20+
<properties>
21+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22+
<javasdk.version>1.8</javasdk.version>
23+
<websocket.version>1.1</websocket.version>
24+
<junit.version>4.12</junit.version>
25+
<log4j.version>1.2.17</log4j.version>
26+
<sfl4j.version>1.7.30</sfl4j.version>
27+
<tyrus.version>1.17</tyrus.version>
28+
29+
<skipTests>true</skipTests>
30+
31+
<maven-release-plugin.version>3.0.0-M1</maven-release-plugin.version>
32+
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
33+
<maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version>
34+
<maven-jar-plugin.version>3.1.2</maven-jar-plugin.version>
35+
<maven-surefire-plugin.version>3.0.0-M3</maven-surefire-plugin.version>
36+
<maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version>
37+
</properties>
38+
39+
<dependencyManagement>
40+
<dependencies>
41+
<dependency>
42+
<groupId>com.fasterxml.jackson.core</groupId>
43+
<artifactId>jackson-databind</artifactId>
44+
<version>2.10.0.pr1</version>
45+
</dependency>
46+
<dependency>
47+
<groupId>com.fasterxml.jackson.dataformat</groupId>
48+
<artifactId>jackson-dataformat-xml</artifactId>
49+
<version>2.9.3</version>
50+
</dependency>
51+
<dependency>
52+
<groupId>javax.websocket</groupId>
53+
<artifactId>javax.websocket-api</artifactId>
54+
<version>${websocket.version}</version>
55+
</dependency>
56+
<dependency>
57+
<groupId>org.glassfish.tyrus</groupId>
58+
<artifactId>tyrus-client</artifactId>
59+
<version>${tyrus.version}</version>
60+
</dependency>
61+
<dependency>
62+
<groupId>org.glassfish.tyrus</groupId>
63+
<artifactId>tyrus-container-grizzly-client</artifactId>
64+
<version>${tyrus.version}</version>
65+
</dependency>
66+
<dependency>
67+
<groupId>org.slf4j</groupId>
68+
<artifactId>slf4j-api</artifactId>
69+
<version>${sfl4j.version}</version>
70+
</dependency>
71+
<dependency>
72+
<groupId>org.slf4j</groupId>
73+
<artifactId>slf4j-log4j12</artifactId>
74+
<version>${sfl4j.version}</version>
75+
</dependency>
76+
<dependency>
77+
<groupId>log4j</groupId>
78+
<artifactId>log4j</artifactId>
79+
<version>${log4j.version}</version>
80+
</dependency>
81+
</dependencies>
82+
</dependencyManagement>
83+
84+
<scm>
85+
<developerConnection>scm:git:ssh://[email protected]/CPqD/asr-sdk-java.git</developerConnection>
86+
<tag>v2.1.0</tag>
87+
</scm>
88+
89+
<build>
90+
<pluginManagement>
91+
<plugins>
92+
<plugin>
93+
<groupId>org.apache.maven.plugins</groupId>
94+
<artifactId>maven-compiler-plugin</artifactId>
95+
<version>${maven-compiler-plugin.version}</version>
96+
<configuration>
97+
<source>${javasdk.version}</source>
98+
<target>${javasdk.version}</target>
99+
</configuration>
100+
</plugin>
101+
102+
<plugin>
103+
<groupId>org.apache.maven.plugins</groupId>
104+
<artifactId>maven-surefire-plugin</artifactId>
105+
<version>${maven-surefire-plugin.version}</version>
106+
<configuration>
107+
<skipTests>${skipTests}</skipTests>
108+
</configuration>
109+
</plugin>
110+
111+
<plugin>
112+
<groupId>org.apache.maven.plugins</groupId>
113+
<artifactId>maven-release-plugin</artifactId>
114+
<version>${maven-release-plugin.version}</version>
115+
<configuration>
116+
<autoVersionSubmodules>true</autoVersionSubmodules>
117+
<tagNameFormat>v@{project.version}</tagNameFormat>
118+
</configuration>
119+
</plugin>
120+
</plugins>
121+
</pluginManagement>
122+
</build>
123+
124+
<developers>
125+
<developer>
126+
<name>Eduardo Yamamoto Baldin</name>
127+
<email>[email protected]</email>
128+
<timezone>America/Sao_Paulo</timezone>
129+
<roles>
130+
<role>architect</role>
131+
</roles>
132+
</developer>
133+
<developer>
134+
<name>Luis Augusto de Sa Pessoa</name>
135+
<timezone>America/Sao_Paulo</timezone>
136+
<roles>
137+
<role>committer</role>
138+
</roles>
139+
</developer>
140+
</developers>
141+
142+
<licenses>
143+
<license>
144+
<name>Apache License 2.0</name>
145+
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
146+
<distribution>repo</distribution>
147+
</license>
148+
</licenses>
149+
150+
</project>

0 commit comments

Comments
 (0)