app-config
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.duracloud</groupId>
<artifactId>app-config</artifactId>
<version>3.7.4</version>
</dependency><?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">
<parent>
<artifactId>duracloud</artifactId>
<groupId>org.duracloud</groupId>
<version>3.7.4</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.duracloud</groupId>
<artifactId>app-config</artifactId>
<version>3.7.4</version>
<name>Application Config</name>
<properties>
<!-- see maven-shade-plugin in root pom.xml -->
<mainClass>org.duracloud.appconfig.ApplicationInitDriver</mainClass>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<!-- internal projects -->
<dependency>
<groupId>org.duracloud</groupId>
<artifactId>common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.duracloud</groupId>
<artifactId>security</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.duracloud</groupId>
<artifactId>storageprovider</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom</artifactId>
</dependency>
</dependencies>
</project>