Skip to content

Commit 0d88b87

Browse files
committed
[maven-release-plugin] prepare release v2.2.0
1 parent 3f6b5b6 commit 0d88b87

File tree

4 files changed

+355
-355
lines changed

4 files changed

+355
-355
lines changed

pom.xml

Lines changed: 151 additions & 151 deletions
Original file line numberDiff line numberDiff line change
@@ -1,151 +1,151 @@
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.1-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-
<jackson.version>2.13.2</jackson.version>
26-
<log4j.version>1.2.17</log4j.version>
27-
<sfl4j.version>1.7.36</sfl4j.version>
28-
<tyrus.version>1.18</tyrus.version>
29-
30-
<skipTests>true</skipTests>
31-
32-
<maven-release-plugin.version>3.0.0-M5</maven-release-plugin.version>
33-
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
34-
<maven-dependency-plugin.version>3.3.0</maven-dependency-plugin.version>
35-
<maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
36-
<maven-surefire-plugin.version>3.0.0-M6</maven-surefire-plugin.version>
37-
<maven-javadoc-plugin.version>3.4.0</maven-javadoc-plugin.version>
38-
</properties>
39-
40-
<dependencyManagement>
41-
<dependencies>
42-
<dependency>
43-
<groupId>com.fasterxml.jackson.core</groupId>
44-
<artifactId>jackson-databind</artifactId>
45-
<version>${jackson.version}</version>
46-
</dependency>
47-
<dependency>
48-
<groupId>com.fasterxml.jackson.dataformat</groupId>
49-
<artifactId>jackson-dataformat-xml</artifactId>
50-
<version>${jackson.version}</version>
51-
</dependency>
52-
<dependency>
53-
<groupId>javax.websocket</groupId>
54-
<artifactId>javax.websocket-api</artifactId>
55-
<version>${websocket.version}</version>
56-
</dependency>
57-
<dependency>
58-
<groupId>org.glassfish.tyrus</groupId>
59-
<artifactId>tyrus-client</artifactId>
60-
<version>${tyrus.version}</version>
61-
</dependency>
62-
<dependency>
63-
<groupId>org.glassfish.tyrus</groupId>
64-
<artifactId>tyrus-container-grizzly-client</artifactId>
65-
<version>${tyrus.version}</version>
66-
</dependency>
67-
<dependency>
68-
<groupId>org.slf4j</groupId>
69-
<artifactId>slf4j-api</artifactId>
70-
<version>${sfl4j.version}</version>
71-
</dependency>
72-
<dependency>
73-
<groupId>org.slf4j</groupId>
74-
<artifactId>slf4j-log4j12</artifactId>
75-
<version>${sfl4j.version}</version>
76-
</dependency>
77-
<dependency>
78-
<groupId>log4j</groupId>
79-
<artifactId>log4j</artifactId>
80-
<version>${log4j.version}</version>
81-
</dependency>
82-
</dependencies>
83-
</dependencyManagement>
84-
85-
<scm>
86-
<developerConnection>scm:git:ssh://[email protected]/CPqD/asr-sdk-java.git</developerConnection>
87-
<tag>HEAD</tag>
88-
</scm>
89-
90-
<build>
91-
<pluginManagement>
92-
<plugins>
93-
<plugin>
94-
<groupId>org.apache.maven.plugins</groupId>
95-
<artifactId>maven-compiler-plugin</artifactId>
96-
<version>${maven-compiler-plugin.version}</version>
97-
<configuration>
98-
<source>${javasdk.version}</source>
99-
<target>${javasdk.version}</target>
100-
</configuration>
101-
</plugin>
102-
103-
<plugin>
104-
<groupId>org.apache.maven.plugins</groupId>
105-
<artifactId>maven-surefire-plugin</artifactId>
106-
<version>${maven-surefire-plugin.version}</version>
107-
<configuration>
108-
<skipTests>${skipTests}</skipTests>
109-
</configuration>
110-
</plugin>
111-
112-
<plugin>
113-
<groupId>org.apache.maven.plugins</groupId>
114-
<artifactId>maven-release-plugin</artifactId>
115-
<version>${maven-release-plugin.version}</version>
116-
<configuration>
117-
<autoVersionSubmodules>true</autoVersionSubmodules>
118-
<tagNameFormat>v@{project.version}</tagNameFormat>
119-
</configuration>
120-
</plugin>
121-
</plugins>
122-
</pluginManagement>
123-
</build>
124-
125-
<developers>
126-
<developer>
127-
<name>Eduardo Yamamoto Baldin</name>
128-
<email>[email protected]</email>
129-
<timezone>America/Sao_Paulo</timezone>
130-
<roles>
131-
<role>architect</role>
132-
</roles>
133-
</developer>
134-
<developer>
135-
<name>Luis Augusto de Sa Pessoa</name>
136-
<timezone>America/Sao_Paulo</timezone>
137-
<roles>
138-
<role>committer</role>
139-
</roles>
140-
</developer>
141-
</developers>
142-
143-
<licenses>
144-
<license>
145-
<name>Apache License 2.0</name>
146-
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
147-
<distribution>repo</distribution>
148-
</license>
149-
</licenses>
150-
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+
6+
<groupId>br.com.cpqd.asr</groupId>
7+
<artifactId>recognizer-parent</artifactId>
8+
<version>2.2.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+
<jackson.version>2.13.2</jackson.version>
26+
<log4j.version>1.2.17</log4j.version>
27+
<sfl4j.version>1.7.36</sfl4j.version>
28+
<tyrus.version>1.18</tyrus.version>
29+
30+
<skipTests>true</skipTests>
31+
32+
<maven-release-plugin.version>3.0.0-M5</maven-release-plugin.version>
33+
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
34+
<maven-dependency-plugin.version>3.3.0</maven-dependency-plugin.version>
35+
<maven-jar-plugin.version>3.2.2</maven-jar-plugin.version>
36+
<maven-surefire-plugin.version>3.0.0-M6</maven-surefire-plugin.version>
37+
<maven-javadoc-plugin.version>3.4.0</maven-javadoc-plugin.version>
38+
</properties>
39+
40+
<dependencyManagement>
41+
<dependencies>
42+
<dependency>
43+
<groupId>com.fasterxml.jackson.core</groupId>
44+
<artifactId>jackson-databind</artifactId>
45+
<version>${jackson.version}</version>
46+
</dependency>
47+
<dependency>
48+
<groupId>com.fasterxml.jackson.dataformat</groupId>
49+
<artifactId>jackson-dataformat-xml</artifactId>
50+
<version>${jackson.version}</version>
51+
</dependency>
52+
<dependency>
53+
<groupId>javax.websocket</groupId>
54+
<artifactId>javax.websocket-api</artifactId>
55+
<version>${websocket.version}</version>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.glassfish.tyrus</groupId>
59+
<artifactId>tyrus-client</artifactId>
60+
<version>${tyrus.version}</version>
61+
</dependency>
62+
<dependency>
63+
<groupId>org.glassfish.tyrus</groupId>
64+
<artifactId>tyrus-container-grizzly-client</artifactId>
65+
<version>${tyrus.version}</version>
66+
</dependency>
67+
<dependency>
68+
<groupId>org.slf4j</groupId>
69+
<artifactId>slf4j-api</artifactId>
70+
<version>${sfl4j.version}</version>
71+
</dependency>
72+
<dependency>
73+
<groupId>org.slf4j</groupId>
74+
<artifactId>slf4j-log4j12</artifactId>
75+
<version>${sfl4j.version}</version>
76+
</dependency>
77+
<dependency>
78+
<groupId>log4j</groupId>
79+
<artifactId>log4j</artifactId>
80+
<version>${log4j.version}</version>
81+
</dependency>
82+
</dependencies>
83+
</dependencyManagement>
84+
85+
<scm>
86+
<developerConnection>scm:git:ssh://[email protected]/CPqD/asr-sdk-java.git</developerConnection>
87+
<tag>v2.2.0</tag>
88+
</scm>
89+
90+
<build>
91+
<pluginManagement>
92+
<plugins>
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-compiler-plugin</artifactId>
96+
<version>${maven-compiler-plugin.version}</version>
97+
<configuration>
98+
<source>${javasdk.version}</source>
99+
<target>${javasdk.version}</target>
100+
</configuration>
101+
</plugin>
102+
103+
<plugin>
104+
<groupId>org.apache.maven.plugins</groupId>
105+
<artifactId>maven-surefire-plugin</artifactId>
106+
<version>${maven-surefire-plugin.version}</version>
107+
<configuration>
108+
<skipTests>${skipTests}</skipTests>
109+
</configuration>
110+
</plugin>
111+
112+
<plugin>
113+
<groupId>org.apache.maven.plugins</groupId>
114+
<artifactId>maven-release-plugin</artifactId>
115+
<version>${maven-release-plugin.version}</version>
116+
<configuration>
117+
<autoVersionSubmodules>true</autoVersionSubmodules>
118+
<tagNameFormat>v@{project.version}</tagNameFormat>
119+
</configuration>
120+
</plugin>
121+
</plugins>
122+
</pluginManagement>
123+
</build>
124+
125+
<developers>
126+
<developer>
127+
<name>Eduardo Yamamoto Baldin</name>
128+
<email>[email protected]</email>
129+
<timezone>America/Sao_Paulo</timezone>
130+
<roles>
131+
<role>architect</role>
132+
</roles>
133+
</developer>
134+
<developer>
135+
<name>Luis Augusto de Sa Pessoa</name>
136+
<timezone>America/Sao_Paulo</timezone>
137+
<roles>
138+
<role>committer</role>
139+
</roles>
140+
</developer>
141+
</developers>
142+
143+
<licenses>
144+
<license>
145+
<name>Apache License 2.0</name>
146+
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
147+
<distribution>repo</distribution>
148+
</license>
149+
</licenses>
150+
151+
</project>

0 commit comments

Comments
 (0)