dependency-manager-ext-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.bluestemsoftware.specification.eoa.ext</groupId>
<artifactId>dependency-manager-ext-api</artifactId>
<version>0.8.5.0</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/maven-v4_0_0.xsd">
<parent>
<groupId>org.bluestemsoftware.eoa.apis</groupId>
<artifactId>apis-trunk</artifactId>
<version>1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.bluestemsoftware.specification.eoa.ext</groupId>
<artifactId>dependency-manager-ext-api</artifactId>
<packaging>jar</packaging>
<version>0.8.5.0</version>
<name>Ext Dependency Manager API</name>
<licenses>
<license>
<name>License Agreement</name>
<url>http://alakai.org/licensing/dependency-manager-ext-license.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<build>
<plugins>
<plugin>
<groupId>com.google.code.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.3.0</version>
<executions>
<execution>
<id>id1</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<header>src/main/etc/license-header.txt</header>
<includes>
<include>**/*.java</include>
<include>**/*.xsd</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bluestemsoftware.specification.eoa</groupId>
<artifactId>specification-eoa-api</artifactId>
<version>0.8.5.0</version>
</dependency>
</dependencies>
</project>