Skip to content

Commit 3457bfa

Browse files
committed
Final 3.2.0 release
1 parent 564322b commit 3457bfa

File tree

16 files changed

+52
-51
lines changed

16 files changed

+52
-51
lines changed

Changelog.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# JAVE2
22

33
## Changelog
4-
- **3.3.0-SNAPSHOT**
4+
- **3.3.0**
5+
- Upgraded slf4j libraries
56
- Added options to get/set options by index, thanks to HANXU2018
67
- Upgraded binaries to 4.4.1 release
78
OS-X releases from https://www.osxexperts.net/

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ It includes all binaries for the supported platforms
5050
<dependency>
5151
<groupId>ws.schild</groupId>
5252
<artifactId>jave-all-deps</artifactId>
53-
<version>3.3.0-SNAPSHOT</version>
53+
<version>3.3.0</version>
5454
</dependency>
5555
```
5656

@@ -64,7 +64,7 @@ Include the following in your pom files.
6464
<dependency>
6565
<groupId>ws.schild</groupId>
6666
<artifactId>jave-core</artifactId>
67-
<version>3.3.0-SNAPSHOT</version>
67+
<version>3.3.0</version>
6868
</dependency>
6969
```
7070

@@ -75,7 +75,7 @@ and then the specific jar(s) for your platform(s) :
7575
<dependency>
7676
<groupId>ws.schild</groupId>
7777
<artifactId>jave-nativebin-linux64</artifactId>
78-
<version>3.3.0-SNAPSHOT</version>
78+
<version>3.3.0</version>
7979
</dependency>
8080
```
8181

@@ -84,7 +84,7 @@ and then the specific jar(s) for your platform(s) :
8484
<dependency>
8585
<groupId>ws.schild</groupId>
8686
<artifactId>jave-nativebin-linux-arm64</artifactId>
87-
<version>3.3.0-SNAPSHOT</version>
87+
<version>3.3.0</version>
8888
</dependency>
8989
```
9090

@@ -93,7 +93,7 @@ and then the specific jar(s) for your platform(s) :
9393
<dependency>
9494
<groupId>ws.schild</groupId>
9595
<artifactId>jave-nativebin-linux-arm32</artifactId>
96-
<version>3.3.0-SNAPSHOT</version>
96+
<version>3.3.0</version>
9797
</dependency>
9898
```
9999

@@ -102,7 +102,7 @@ and then the specific jar(s) for your platform(s) :
102102
<dependency>
103103
<groupId>ws.schild</groupId>
104104
<artifactId>jave-nativebin-win64</artifactId>
105-
<version>3.3.0-SNAPSHOT</version>
105+
<version>3.3.0</version>
106106
</dependency>
107107
```
108108

@@ -111,7 +111,7 @@ and then the specific jar(s) for your platform(s) :
111111
<dependency>
112112
<groupId>ws.schild</groupId>
113113
<artifactId>jave-nativebin-osx64</artifactId>
114-
<version>3.3.0-SNAPSHOT</version>
114+
<version>3.3.0</version>
115115
</dependency>
116116
```
117117

@@ -120,13 +120,13 @@ and then the specific jar(s) for your platform(s) :
120120
It includes all binaries for the supported platforms
121121

122122
``` XML
123-
compile group: 'ws.schild', name: 'jave-all-deps', version: '3.3.0-SNAPSHOT'
123+
compile group: 'ws.schild', name: 'jave-all-deps', version: '3.3.0'
124124
```
125125

126126
### For one platform only (Linux 64Bit in this case)
127127
``` XML
128-
compile group: 'ws.schild', name: 'jave-core', version: '3.3.0-SNAPSHOT'
129-
compile group: 'ws.schild', name: 'jave-nativebin-linux64', version: '3.3.0-SNAPSHOT'
128+
compile group: 'ws.schild', name: 'jave-core', version: '3.3.0'
129+
compile group: 'ws.schild', name: 'jave-nativebin-linux64', version: '3.3.0'
130130
```
131131

132132
### Main Components of Jave2

jave-all-deps/pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>ws.schild</groupId>
77
<packaging>jar</packaging>
8-
<version>3.3.0-SNAPSHOT</version>
8+
<version>3.3.0</version>
99
<artifactId>jave-all-deps</artifactId>
1010
<name>Jave all native dependencies package</name>
1111
<description>The JAVE (Java Audio Video Encoder) library is Java wrapper on the
@@ -154,47 +154,47 @@
154154
<dependency>
155155
<groupId>ws.schild</groupId>
156156
<artifactId>jave-core</artifactId>
157-
<version>3.3.0-SNAPSHOT</version>
157+
<version>3.3.0</version>
158158
</dependency>
159159
<dependency>
160160
<groupId>ws.schild</groupId>
161161
<artifactId>jave-nativebin-win32</artifactId>
162-
<version>3.3.0-SNAPSHOT</version>
162+
<version>3.3.0</version>
163163
</dependency>
164164
<dependency>
165165
<groupId>ws.schild</groupId>
166166
<artifactId>jave-nativebin-win64</artifactId>
167-
<version>3.3.0-SNAPSHOT</version>
167+
<version>3.3.0</version>
168168
</dependency>
169169
<dependency>
170170
<groupId>ws.schild</groupId>
171171
<artifactId>jave-nativebin-linux32</artifactId>
172-
<version>3.3.0-SNAPSHOT</version>
172+
<version>3.3.0</version>
173173
</dependency>
174174
<dependency>
175175
<groupId>ws.schild</groupId>
176176
<artifactId>jave-nativebin-linux64</artifactId>
177-
<version>3.3.0-SNAPSHOT</version>
177+
<version>3.3.0</version>
178178
</dependency>
179179
<dependency>
180180
<groupId>ws.schild</groupId>
181181
<artifactId>jave-nativebin-osx64</artifactId>
182-
<version>3.3.0-SNAPSHOT</version>
182+
<version>3.3.0</version>
183183
</dependency>
184184
<dependency>
185185
<groupId>ws.schild</groupId>
186186
<artifactId>jave-nativebin-osxm1</artifactId>
187-
<version>3.3.0-SNAPSHOT</version>
187+
<version>3.3.0</version>
188188
</dependency>
189189
<dependency>
190190
<groupId>ws.schild</groupId>
191191
<artifactId>jave-nativebin-linux-arm32</artifactId>
192-
<version>3.3.0-SNAPSHOT</version>
192+
<version>3.3.0</version>
193193
</dependency>
194194
<dependency>
195195
<groupId>ws.schild</groupId>
196196
<artifactId>jave-nativebin-linux-arm64</artifactId>
197-
<version>3.3.0-SNAPSHOT</version>
197+
<version>3.3.0</version>
198198
</dependency>
199199
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
200200
<dependency>

jave-core-test-java11/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>ws.schild</groupId>
55
<packaging>jar</packaging>
6-
<version>3.3.0-SNAPSHOT</version>
6+
<version>3.3.0</version>
77
<artifactId>jave-core-test-java11</artifactId>
88
<properties>
99
<maven.compiler.source>11</maven.compiler.source>
@@ -38,32 +38,32 @@
3838
<dependency>
3939
<groupId>ws.schild</groupId>
4040
<artifactId>jave-core</artifactId>
41-
<version>3.3.0-SNAPSHOT</version>
41+
<version>3.3.0</version>
4242
</dependency>
4343
<dependency>
4444
<groupId>ws.schild</groupId>
4545
<artifactId>jave-nativebin-win32</artifactId>
46-
<version>3.3.0-SNAPSHOT</version>
46+
<version>3.3.0</version>
4747
</dependency>
4848
<dependency>
4949
<groupId>ws.schild</groupId>
5050
<artifactId>jave-nativebin-win64</artifactId>
51-
<version>3.3.0-SNAPSHOT</version>
51+
<version>3.3.0</version>
5252
</dependency>
5353
<dependency>
5454
<groupId>ws.schild</groupId>
5555
<artifactId>jave-nativebin-linux32</artifactId>
56-
<version>3.3.0-SNAPSHOT</version>
56+
<version>3.3.0</version>
5757
</dependency>
5858
<dependency>
5959
<groupId>ws.schild</groupId>
6060
<artifactId>jave-nativebin-linux64</artifactId>
61-
<version>3.3.0-SNAPSHOT</version>
61+
<version>3.3.0</version>
6262
</dependency>
6363
<dependency>
6464
<groupId>ws.schild</groupId>
6565
<artifactId>jave-nativebin-osx64</artifactId>
66-
<version>3.3.0-SNAPSHOT</version>
66+
<version>3.3.0</version>
6767
</dependency>
6868
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
6969
<dependency>

jave-core-test/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>ws.schild</groupId>
77
<packaging>jar</packaging>
8-
<version>3.3.0-SNAPSHOT</version>
8+
<version>3.3.0</version>
99
<artifactId>jave-core-test</artifactId>
1010
<properties>
1111
<maven.compiler.source>1.8</maven.compiler.source>
@@ -40,32 +40,32 @@
4040
<dependency>
4141
<groupId>ws.schild</groupId>
4242
<artifactId>jave-core</artifactId>
43-
<version>3.3.0-SNAPSHOT</version>
43+
<version>3.3.0</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>ws.schild</groupId>
4747
<artifactId>jave-nativebin-win32</artifactId>
48-
<version>3.3.0-SNAPSHOT</version>
48+
<version>3.3.0</version>
4949
</dependency>
5050
<dependency>
5151
<groupId>ws.schild</groupId>
5252
<artifactId>jave-nativebin-win64</artifactId>
53-
<version>3.3.0-SNAPSHOT</version>
53+
<version>3.3.0</version>
5454
</dependency>
5555
<dependency>
5656
<groupId>ws.schild</groupId>
5757
<artifactId>jave-nativebin-linux32</artifactId>
58-
<version>3.3.0-SNAPSHOT</version>
58+
<version>3.3.0</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>ws.schild</groupId>
6262
<artifactId>jave-nativebin-linux64</artifactId>
63-
<version>3.3.0-SNAPSHOT</version>
63+
<version>3.3.0</version>
6464
</dependency>
6565
<dependency>
6666
<groupId>ws.schild</groupId>
6767
<artifactId>jave-nativebin-osx64</artifactId>
68-
<version>3.3.0-SNAPSHOT</version>
68+
<version>3.3.0</version>
6969
</dependency>
7070
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
7171
<dependency>

jave-core/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>ws.schild</groupId>
77
<artifactId>jave-core</artifactId>
88
<packaging>jar</packaging>
9-
<version>3.3.0-SNAPSHOT</version>
9+
<version>3.3.0</version>
1010
<name>Jave core package</name>
1111
<description>The JAVE (Java Audio Video Encoder) library is Java wrapper on the
1212
ffmpeg project. Developers can take take advantage of JAVE2 to transcode
@@ -50,7 +50,7 @@
5050
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
5151
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
5252
<maven-scm-provider-gitexe.version>1.11.2</maven-scm-provider-gitexe.version>
53-
<slf4j-api.version>1.7.26</slf4j-api.version>
53+
<slf4j-api.version>1.7.36</slf4j-api.version>
5454
<junit-jupiter-api.version>5.4.2</junit-jupiter-api.version>
5555
</properties>
5656
<build>
@@ -247,4 +247,4 @@
247247
</build>
248248
</profile>
249249
</profiles>
250-
</project>
250+
</project>

jave-example/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>ws.schild</groupId>
55
<packaging>jar</packaging>
6-
<version>3.3.0-SNAPSHOT</version>
6+
<version>3.3.0</version>
77
<artifactId>jave-example</artifactId>
88
<properties>
99
<maven.compiler.source>12</maven.compiler.source>
@@ -66,12 +66,12 @@
6666
<dependency>
6767
<groupId>ws.schild</groupId>
6868
<artifactId>jave-core</artifactId>
69-
<version>3.3.0-SNAPSHOT</version>
69+
<version>3.3.0</version>
7070
</dependency>
7171
<dependency>
7272
<groupId>ws.schild</groupId>
7373
<artifactId>jave-nativebin-linux32</artifactId>
74-
<version>3.3.0-SNAPSHOT</version>
74+
<version>3.3.0</version>
7575
</dependency>
7676
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple -->
7777
<dependency>

jave-nativebin-arm32/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>ws.schild</groupId>
55
<packaging>jar</packaging>
6-
<version>3.3.0-SNAPSHOT</version>
6+
<version>3.3.0</version>
77
<artifactId>jave-nativebin-linux-arm32</artifactId>
88
<name>Jave linux arm 32 bit native package</name>
99
<description>The JAVE (Java Audio Video Encoder) library is Java wrapper on the

jave-nativebin-arm64/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>ws.schild</groupId>
55
<packaging>jar</packaging>
6-
<version>3.3.0-SNAPSHOT</version>
6+
<version>3.3.0</version>
77
<artifactId>jave-nativebin-linux-arm64</artifactId>
88
<name>Jave linux arm 64 bit native package</name>
99
<description>The JAVE (Java Audio Video Encoder) library is Java wrapper on the

jave-nativebin-linux32/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>ws.schild</groupId>
55
<packaging>jar</packaging>
6-
<version>3.3.0-SNAPSHOT</version>
6+
<version>3.3.0</version>
77
<artifactId>jave-nativebin-linux32</artifactId>
88
<name>Jave linux 32 bit native package</name>
99
<description>The JAVE (Java Audio Video Encoder) library is Java wrapper on the

0 commit comments

Comments
 (0)