Skip to content

Commit fa944b9

Browse files
committed
7.2.10512
1 parent c426a40 commit fa944b9

File tree

92 files changed

+10357
-675
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+10357
-675
lines changed

Java/android/androidfsstorage/app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ android {
3434
jarJar {
3535
rules = [
3636
'stax-api-1.0.1.jar' : 'javax.xml.** com.ithit.webdav.xml.@1',
37-
'webdav-server-7.1.10406.jar': 'javax.xml.stream.** com.ithit.webdav.xml.stream.@1'
37+
'webdav-server-7.2.10512.jar': 'javax.xml.stream.** com.ithit.webdav.xml.stream.@1'
3838
]
3939
}
4040

@@ -75,11 +75,11 @@ dependencies {
7575
implementation 'commons-io:commons-io:2.7'
7676
implementation 'com.google.code.gson:gson:2.8.9'
7777
implementation 'com.android.support:appcompat-v7:27.1.1'
78-
implementation('com.ithit.webdav.integration:android-integration:7.1.10406', {
78+
implementation('com.ithit.webdav.integration:android-integration:7.2.10512', {
7979
exclude group: 'org.nanohttpd', module: 'nanohttpd'
8080
})
8181
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
8282
jarJar 'stax:stax-api:1.0.1'
83-
jarJar 'com.ithit.webdav:webdav-server:7.1.10406'
83+
jarJar 'com.ithit.webdav:webdav-server:7.2.10512'
8484
testImplementation 'junit:junit:4.12'
8585
}

Java/jakarta/collectionsync/pom.xml

Lines changed: 7 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.ithit.webdav.samples</groupId>
88
<artifactId>collectionsync-jakarta</artifactId>
9-
<version>7.1.10406</version>
9+
<version>7.2.10512</version>
1010
<packaging>war</packaging>
1111

1212
<properties>
@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>com.ithit.webdav.integration</groupId>
2727
<artifactId>jakarta-integration</artifactId>
28-
<version>7.1.10406</version>
28+
<version>7.2.10512</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>commons-lang</groupId>
@@ -50,71 +50,17 @@
5050
<dependency>
5151
<groupId>org.apache.tika</groupId>
5252
<artifactId>tika-core</artifactId>
53-
<version>1.28.5</version>
53+
<version>2.9.2</version>
5454
</dependency>
5555
<dependency>
5656
<groupId>org.apache.tika</groupId>
57-
<artifactId>tika-parsers</artifactId>
58-
<version>1.28.5</version>
59-
<exclusions>
60-
<exclusion>
61-
<artifactId>cxf-core</artifactId>
62-
<groupId>org.apache.cxf</groupId>
63-
</exclusion>
64-
<exclusion>
65-
<artifactId>cxf-rt-rs-client</artifactId>
66-
<groupId>org.apache.cxf</groupId>
67-
</exclusion>
68-
<exclusion>
69-
<artifactId>httpservices</artifactId>
70-
<groupId>edu.ucar</groupId>
71-
</exclusion>
72-
<exclusion>
73-
<artifactId>maven-scm-provider-svnexe</artifactId>
74-
<groupId>org.apache.maven.scm</groupId>
75-
</exclusion>
76-
<exclusion>
77-
<artifactId>maven-scm-api</artifactId>
78-
<groupId>org.apache.maven.scm</groupId>
79-
</exclusion>
80-
<exclusion>
81-
<artifactId>slf4j-log4j12</artifactId>
82-
<groupId>org.slf4j</groupId>
83-
</exclusion>
84-
<exclusion>
85-
<artifactId>c3p0</artifactId>
86-
<groupId>c3p0</groupId>
87-
</exclusion>
88-
<exclusion>
89-
<artifactId>httpclient</artifactId>
90-
<groupId>org.apache.httpcomponents</groupId>
91-
</exclusion>
92-
<exclusion>
93-
<artifactId>grib</artifactId>
94-
<groupId>edu.ucar</groupId>
95-
</exclusion>
96-
<exclusion>
97-
<artifactId>cdm</artifactId>
98-
<groupId>edu.ucar</groupId>
99-
</exclusion>
100-
<exclusion>
101-
<artifactId>unit-api</artifactId>
102-
<groupId>javax.measure</groupId>
103-
</exclusion>
104-
<exclusion>
105-
<artifactId>activation</artifactId>
106-
<groupId>javax.activation</groupId>
107-
</exclusion>
108-
<exclusion>
109-
<groupId>org.apache.sis.storage</groupId>
110-
<artifactId>sis-netcdf</artifactId>
111-
</exclusion>
112-
</exclusions>
57+
<artifactId>tika-parsers-standard-package</artifactId>
58+
<version>2.9.2</version>
11359
</dependency>
11460
<dependency>
11561
<groupId>com.ithit.webdav</groupId>
11662
<artifactId>webdav-server</artifactId>
117-
<version>7.1.10406</version>
63+
<version>7.2.10512</version>
11864
</dependency>
11965
</dependencies>
12066

@@ -186,7 +132,7 @@
186132
<server>filesystem</server>
187133
<port>11021</port>
188134
<path>/</path>
189-
<warSourceDirectory>target/collectionsync-jakarta-7.1.10406</warSourceDirectory>
135+
<warSourceDirectory>target/collectionsync-jakarta-7.2.10512</warSourceDirectory>
190136
</configuration>
191137
</plugin>
192138
<plugin>

Java/jakarta/collectionsync/src/main/webapp/WEB-INF/wwwroot/js/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Java/jakarta/filesystemstorage/pom.xml

Lines changed: 7 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.ithit.webdav.samples</groupId>
88
<artifactId>filesystemstorage</artifactId>
9-
<version>7.1.10406</version>
9+
<version>7.2.10512</version>
1010
<packaging>war</packaging>
1111

1212
<properties>
@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>com.ithit.webdav.integration</groupId>
2727
<artifactId>jakarta-integration</artifactId>
28-
<version>7.1.10406</version>
28+
<version>7.2.10512</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>commons-io</groupId>
@@ -56,71 +56,17 @@
5656
<dependency>
5757
<groupId>org.apache.tika</groupId>
5858
<artifactId>tika-core</artifactId>
59-
<version>1.28.5</version>
59+
<version>2.9.2</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>org.apache.tika</groupId>
63-
<artifactId>tika-parsers</artifactId>
64-
<version>1.28.5</version>
65-
<exclusions>
66-
<exclusion>
67-
<artifactId>cxf-core</artifactId>
68-
<groupId>org.apache.cxf</groupId>
69-
</exclusion>
70-
<exclusion>
71-
<artifactId>cxf-rt-rs-client</artifactId>
72-
<groupId>org.apache.cxf</groupId>
73-
</exclusion>
74-
<exclusion>
75-
<artifactId>httpservices</artifactId>
76-
<groupId>edu.ucar</groupId>
77-
</exclusion>
78-
<exclusion>
79-
<artifactId>maven-scm-provider-svnexe</artifactId>
80-
<groupId>org.apache.maven.scm</groupId>
81-
</exclusion>
82-
<exclusion>
83-
<artifactId>maven-scm-api</artifactId>
84-
<groupId>org.apache.maven.scm</groupId>
85-
</exclusion>
86-
<exclusion>
87-
<artifactId>slf4j-log4j12</artifactId>
88-
<groupId>org.slf4j</groupId>
89-
</exclusion>
90-
<exclusion>
91-
<artifactId>c3p0</artifactId>
92-
<groupId>c3p0</groupId>
93-
</exclusion>
94-
<exclusion>
95-
<artifactId>httpclient</artifactId>
96-
<groupId>org.apache.httpcomponents</groupId>
97-
</exclusion>
98-
<exclusion>
99-
<artifactId>grib</artifactId>
100-
<groupId>edu.ucar</groupId>
101-
</exclusion>
102-
<exclusion>
103-
<artifactId>cdm</artifactId>
104-
<groupId>edu.ucar</groupId>
105-
</exclusion>
106-
<exclusion>
107-
<artifactId>unit-api</artifactId>
108-
<groupId>javax.measure</groupId>
109-
</exclusion>
110-
<exclusion>
111-
<artifactId>activation</artifactId>
112-
<groupId>javax.activation</groupId>
113-
</exclusion>
114-
<exclusion>
115-
<groupId>org.apache.sis.storage</groupId>
116-
<artifactId>sis-netcdf</artifactId>
117-
</exclusion>
118-
</exclusions>
63+
<artifactId>tika-parsers-standard-package</artifactId>
64+
<version>2.9.2</version>
11965
</dependency>
12066
<dependency>
12167
<groupId>com.ithit.webdav</groupId>
12268
<artifactId>webdav-server</artifactId>
123-
<version>7.1.10406</version>
69+
<version>7.2.10512</version>
12470
</dependency>
12571
</dependencies>
12672

@@ -192,7 +138,7 @@
192138
<server>filesystem</server>
193139
<port>11021</port>
194140
<path>/</path>
195-
<warSourceDirectory>target/filesystemstorage-jakarta-7.1.10406</warSourceDirectory>
141+
<warSourceDirectory>target/filesystemstorage-jakarta-7.2.10512</warSourceDirectory>
196142
</configuration>
197143
</plugin>
198144
<plugin>

Java/jakarta/filesystemstorage/src/main/webapp/WEB-INF/wwwroot/js/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)