examples-trunk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.bluestemsoftware.open.eoa.example</groupId>
<artifactId>examples-trunk</artifactId>
<version>1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0">
<parent>
<groupId>org.bluestemsoftware.eoa</groupId>
<artifactId>eoa-parent</artifactId>
<version>1</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.bluestemsoftware.open.eoa.example</groupId>
<artifactId>examples-trunk</artifactId>
<packaging>pom</packaging>
<name>examples-trunk</name>
<version>1</version>
<description>Application Examples</description>
<licenses>
<license>
<name>GNU General Public License</name>
<url>http://www.gnu.org/licenses/gpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:svn:svn://treleis.org/eoa/examples/trunk</connection>
<developerConnection>scm:svn:svn://treleis.org/eoa/examples/trunk</developerConnection>
<url>scm:svn:svn://treleis.org/eoa/examples/trunk</url>
</scm>
<build>
<pluginManagement>
<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>header.txt</header>
<excludes>
<exclude>**/http.www.springframework.org.schema.beans.xsd</exclude>
</excludes>
<includes>
<include>**/*.java</include>
<include>**/*.xsd</include>
</includes>
</configuration>
<dependencies>
<dependency>
<groupId>org.bluestemsoftware.license.header</groupId>
<artifactId>gpl-2.0</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.bluestemsoftware.specification.eoa</groupId>
<artifactId>specification-eoa-api</artifactId>
<version>0.8.0.1</version>
</dependency>
<dependency>
<groupId>org.bluestemsoftware.specification.eoa.ext</groupId>
<artifactId>specification-eoa-ext-api</artifactId>
<version>0.8.0.1</version>
</dependency>
<dependency>
<groupId>org.bluestemsoftware.open.eoa.shared</groupId>
<artifactId>open-eoa-commons</artifactId>
<version>0.8.0.1</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>spring-10-application</module>
</modules>
</project>