Skip to content

Commit

Permalink
2.1.621
Browse files Browse the repository at this point in the history
  • Loading branch information
ITHitBuild committed Jun 16, 2017
1 parent 6843b96 commit 737691d
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 69 deletions.
34 changes: 8 additions & 26 deletions deltav/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,6 @@
<groupId>com.ithit.webdav.server</groupId>
<artifactId>WebDavEngine</artifactId>
<version>2.1.621</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/lib/WebDavEngine-2.1.621.jar</systemPath>
</dependency>

</dependencies>
Expand All @@ -100,6 +98,14 @@
<id>nuxeo</id>
<url>https://maven.nuxeo.org/nexus/content/groups/public</url>
</repository>
<repository>
<id>webdavengine</id>
<url>https://raw.github.com/ithit/WebDAVServerSamplesJava/mvn-repo/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>

<build>
Expand All @@ -113,30 +119,6 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<webResources>
<resource>
<directory>src/main/lib</directory>
<targetPath>WEB-INF/lib</targetPath>
<includes>
<include>**/*.jar</include>
</includes>
</resource>
<resource>
<directory>src/main/webapp/WEB-INF</directory>
<filtering>true</filtering>
<targetPath>WEB-INF</targetPath>
<includes>
<include>*.properties</include>
</includes>
</resource>
</webResources>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
Expand Down
Binary file removed deltav/src/main/lib/WebDavEngine-2.1.621.jar
Binary file not shown.
31 changes: 14 additions & 17 deletions filesystemstorage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
</properties>

<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.7</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
Expand Down Expand Up @@ -97,8 +103,6 @@
<groupId>com.ithit.webdav.server</groupId>
<artifactId>WebDavEngine</artifactId>
<version>2.1.621</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/lib/WebDavEngine-2.1.621.jar</systemPath>
</dependency>
</dependencies>

Expand All @@ -107,6 +111,14 @@
<id>nuxeo</id>
<url>https://maven.nuxeo.org/nexus/content/groups/public</url>
</repository>
<repository>
<id>webdavengine</id>
<url>https://raw.github.com/ithit/WebDAVServerSamplesJava/mvn-repo/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>

<build>
Expand All @@ -126,28 +138,13 @@
<version>2.6</version>
<configuration>
<webResources>
<resource>
<directory>src/main/lib</directory>
<targetPath>WEB-INF/lib</targetPath>
<includes>
<include>**/*.jar</include>
</includes>
</resource>
<resource>
<directory>src/main/storageresources</directory>
<targetPath>WEB-INF</targetPath>
<excludes>
<exclude>**/pom.xml</exclude>
</excludes>
</resource>
<resource>
<directory>src/main/webapp/WEB-INF</directory>
<filtering>true</filtering>
<targetPath>WEB-INF</targetPath>
<includes>
<include>*.properties</include>
</includes>
</resource>
</webResources>
</configuration>
</plugin>
Expand Down
Binary file not shown.
35 changes: 9 additions & 26 deletions oraclestorage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,16 +89,23 @@
<groupId>com.ithit.webdav.server</groupId>
<artifactId>WebDavEngine</artifactId>
<version>2.1.621</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/lib/WebDavEngine-2.1.621.jar</systemPath>
</dependency>

</dependencies>

<repositories>
<repository>
<id>nuxeo</id>
<url>https://maven.nuxeo.org/nexus/content/groups/public</url>
</repository>
<repository>
<id>webdavengine</id>
<url>https://raw.github.com/ithit/WebDAVServerSamplesJava/mvn-repo/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>

<build>
Expand All @@ -112,30 +119,6 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<webResources>
<resource>
<directory>src/main/lib</directory>
<targetPath>WEB-INF/lib</targetPath>
<includes>
<include>**/*.jar</include>
</includes>
</resource>
<resource>
<directory>src/main/webapp/WEB-INF</directory>
<filtering>true</filtering>
<targetPath>WEB-INF</targetPath>
<includes>
<include>*.properties</include>
</includes>
</resource>
</webResources>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
Expand Down
Binary file removed oraclestorage/src/main/lib/WebDavEngine-2.1.621.jar
Binary file not shown.

0 comments on commit 737691d

Please sign in to comment.