-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
512d2d8
commit 92143fc
Showing
1,033 changed files
with
18,119 additions
and
207 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,255 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<groupId>com.ithit.webdav.samples</groupId> | ||
<artifactId>filesystemstorage</artifactId> | ||
<version>6.3.9510-Beta</version> | ||
<packaging>war</packaging> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<maven.compiler.source>17</maven.compiler.source> | ||
<maven.compiler.target>17</maven.compiler.target> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.8.9</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>jakarta.platform</groupId> | ||
<artifactId>jakarta.jakartaee-api</artifactId> | ||
<version>10.0.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.ithit.webdav.integration</groupId> | ||
<artifactId>jakarta-integration</artifactId> | ||
<version>6.3.9510-Beta</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
<version>2.7</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>commons-lang</groupId> | ||
<artifactId>commons-lang</artifactId> | ||
<version>2.6</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.lucene</groupId> | ||
<artifactId>lucene-core</artifactId> | ||
<version>7.5.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.lucene</groupId> | ||
<artifactId>lucene-queryparser</artifactId> | ||
<version>7.5.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.lucene</groupId> | ||
<artifactId>lucene-highlighter</artifactId> | ||
<version>7.5.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.tika</groupId> | ||
<artifactId>tika-core</artifactId> | ||
<version>1.28.5</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.tika</groupId> | ||
<artifactId>tika-parsers</artifactId> | ||
<version>1.28.5</version> | ||
<exclusions> | ||
<exclusion> | ||
<artifactId>cxf-core</artifactId> | ||
<groupId>org.apache.cxf</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>cxf-rt-rs-client</artifactId> | ||
<groupId>org.apache.cxf</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>httpservices</artifactId> | ||
<groupId>edu.ucar</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>maven-scm-provider-svnexe</artifactId> | ||
<groupId>org.apache.maven.scm</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>maven-scm-api</artifactId> | ||
<groupId>org.apache.maven.scm</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>slf4j-log4j12</artifactId> | ||
<groupId>org.slf4j</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>c3p0</artifactId> | ||
<groupId>c3p0</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>httpclient</artifactId> | ||
<groupId>org.apache.httpcomponents</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>grib</artifactId> | ||
<groupId>edu.ucar</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>cdm</artifactId> | ||
<groupId>edu.ucar</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>unit-api</artifactId> | ||
<groupId>javax.measure</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<artifactId>activation</artifactId> | ||
<groupId>javax.activation</groupId> | ||
</exclusion> | ||
<exclusion> | ||
<groupId>org.apache.sis.storage</groupId> | ||
<artifactId>sis-netcdf</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.ithit.webdav</groupId> | ||
<artifactId>webdav-server</artifactId> | ||
<version>6.3.9510-Beta</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>net.java.dev.jna</groupId> | ||
<artifactId>jna-platform</artifactId> | ||
<version>5.13.0</version> | ||
</dependency> | ||
</dependencies> | ||
|
||
<repositories> | ||
<repository> | ||
<id>nuxeo</id> | ||
<url>https://maven.nuxeo.org/nexus/content/groups/public</url> | ||
</repository> | ||
</repositories> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-war-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<configuration> | ||
<webResources> | ||
<resource> | ||
<directory>src/main/storageresources</directory> | ||
<targetPath>WEB-INF</targetPath> | ||
<excludes> | ||
<exclude>**/pom.xml</exclude> | ||
</excludes> | ||
</resource> | ||
</webResources> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-antrun-plugin</artifactId> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<version>1.8</version> | ||
<executions> | ||
<execution> | ||
<id>windows</id> | ||
<phase>none</phase> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<configuration> | ||
<target> | ||
<exec executable="start" vmlauncher="false"> | ||
<arg line="http://localhost:11021/"/> | ||
</exec> | ||
</target> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>linux</id> | ||
<phase>none</phase> | ||
<goals> | ||
<goal>run</goal> | ||
</goals> | ||
<configuration> | ||
<target> | ||
<exec executable="xdg-open"> | ||
<arg line="http://localhost:11021/"/> | ||
</exec> | ||
</target> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.tomcat.maven</groupId> | ||
<artifactId>tomcat7-maven-plugin</artifactId> | ||
<version>2.2</version> | ||
<configuration> | ||
<server>filesystem</server> | ||
<port>11021</port> | ||
<path>/</path> | ||
<warSourceDirectory>target/filesystemstorage-jakarta-6.3.9510-Beta</warSourceDirectory> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>com.github.eirslett</groupId> | ||
<artifactId>frontend-maven-plugin</artifactId> | ||
<version>1.12.1</version> | ||
<executions> | ||
<execution> | ||
<id>install node and npm</id> | ||
<goals> | ||
<goal>install-node-and-npm</goal> | ||
</goals> | ||
<configuration> | ||
<installDirectory>${java.io.tmpdir}</installDirectory> | ||
<nodeVersion>v16.14.2</nodeVersion> | ||
<npmVersion>8.7.0</npmVersion> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>npm update</id> | ||
<goals> | ||
<goal>npm</goal> | ||
</goals> | ||
<phase>generate-resources</phase> | ||
<configuration> | ||
<arguments>update</arguments> | ||
<workingDirectory>src/main/webapp/WEB-INF/wwwroot/js</workingDirectory> | ||
<installDirectory>C:\Users\build\AppData\Local\Temp\</installDirectory> | ||
</configuration> | ||
</execution> | ||
<execution> | ||
<id>npm install</id> | ||
<goals> | ||
<goal>npm</goal> | ||
</goals> | ||
<phase>generate-resources</phase> | ||
<configuration> | ||
<arguments>install</arguments> | ||
<workingDirectory>src/main/webapp/WEB-INF/wwwroot/js</workingDirectory> | ||
<installDirectory>${java.io.tmpdir}</installDirectory> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<escapeString>\</escapeString> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
File renamed without changes.
Oops, something went wrong.