Updated
Some checks failed
Locusworks Team/commons/pipeline/head There was a failure building this commit
Some checks failed
Locusworks Team/commons/pipeline/head There was a failure building this commit
This commit is contained in:
12
.gitignore
vendored
12
.gitignore
vendored
@ -2,17 +2,6 @@
|
|||||||
.idea
|
.idea
|
||||||
.project
|
.project
|
||||||
.settings
|
.settings
|
||||||
filerepo_client/dist/
|
|
||||||
filerepo_client/nbproject/private/
|
|
||||||
filerepo_client/node/
|
|
||||||
filerepo_client/node_modules/
|
|
||||||
filerepo_client/test_out/
|
|
||||||
filerepo_client/temp/
|
|
||||||
filerepo_client/app/compiled-less
|
|
||||||
filerepo_webapp/.externalToolBuilders/
|
|
||||||
npm-debug.log
|
|
||||||
phantomjs
|
|
||||||
tags
|
|
||||||
*.DS_Store
|
*.DS_Store
|
||||||
*/bin/
|
*/bin/
|
||||||
**/.classpath
|
**/.classpath
|
||||||
@ -22,3 +11,4 @@ tags
|
|||||||
**/.tern-project
|
**/.tern-project
|
||||||
**/*.iml
|
**/*.iml
|
||||||
**/git.properties
|
**/git.properties
|
||||||
|
.metadata/
|
||||||
|
48
pom.xml
48
pom.xml
@ -23,6 +23,7 @@
|
|||||||
<jackson.version>2.9.9</jackson.version>
|
<jackson.version>2.9.9</jackson.version>
|
||||||
<maven.compiler.source>1.8</maven.compiler.source>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
<maven.compiler.target>1.8</maven.compiler.target>
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
|
<nexus.repo>https://nexus.locusworks.net</nexus.repo>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
@ -31,6 +32,9 @@
|
|||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>2.20.1</version>
|
<version>2.20.1</version>
|
||||||
|
<configuration>
|
||||||
|
<forkMode>always</forkMode>
|
||||||
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
@ -130,28 +134,42 @@
|
|||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<repositories>
|
|
||||||
<repository>
|
|
||||||
<id>nexus-proxy-public</id>
|
|
||||||
<url>http://devops.locusworks.net:8081/repository/maven-public/</url>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
|
||||||
<pluginRepositories>
|
|
||||||
<pluginRepository>
|
|
||||||
<id>nexus-proxy-public</id>
|
|
||||||
<url>http://devops.locusworks.net:8081/repository/maven-public/</url>
|
|
||||||
</pluginRepository>
|
|
||||||
</pluginRepositories>
|
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<snapshotRepository>
|
<snapshotRepository>
|
||||||
<id>nexus-snapshot</id>
|
<id>nexus-snapshot</id>
|
||||||
<url>http://devops.locusworks.net:8081/repository/locusworks-snapshot/</url>
|
<url>${nexus.repo}/repository/locusworks-snapshot/</url>
|
||||||
</snapshotRepository>
|
</snapshotRepository>
|
||||||
<repository>
|
<repository>
|
||||||
<id>nexus-release</id>
|
<id>nexus-release</id>
|
||||||
<url>http://devops.locusworks.net:8081/repository/locusworks-release/</url>
|
<url>${nexus.repo}/repository/locusworks-release/</url>
|
||||||
</repository>
|
</repository>
|
||||||
</distributionManagement>
|
</distributionManagement>
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>locusworks-public</id>
|
||||||
|
<name>locusworks-public</name>
|
||||||
|
<url>${nexus.repo}/repository/locusworks-public/</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>locusworks-public</id>
|
||||||
|
<url>${nexus.repo}/repository/locusworks-public/</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
</project>
|
</project>
|
Reference in New Issue
Block a user