warehouse-manager-application
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.bluestemsoftware.open.eoa.example.application.spring10</groupId> <artifactId>warehouse-manager-application</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"> <parent> <groupId>org.bluestemsoftware.open.eoa.example.application.spring10</groupId> <artifactId>spring-10-application</artifactId> <version>0.8.5.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>warehouse-manager-application</artifactId> <packaging>eoa-component</packaging> <name>warehouse-manager-application</name> <url>http://alakai.org</url> <build> <plugins> <plugin> <groupId>org.bluestemsoftware.open.maven.plugin</groupId> <artifactId>maven-eoa-plugin</artifactId> <extensions>true</extensions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.4</version> <configuration> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>com.google.code.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> <configuration> <properties> <year>2008</year> </properties> </configuration> </plugin> </plugins> </build> <properties> <partner.version>0.8.5.0</partner.version> </properties> <dependencies> <!-- ************************ test dependencies ******************************** --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.bluestemsoftware.open.eoa.ext</groupId> <artifactId>ext-system-test</artifactId> <version>0.8.5.0</version> <scope>test</scope> </dependency> <!-- ********************** provided dependencies ****************************** --> <dependency> <groupId>org.bluestemsoftware.specification.eoa</groupId> <artifactId>specification-eoa-api</artifactId> <scope>system</scope> <systemPath>${env.ALAKAI_HOME}/repository/org/bluestemsoftware/specification/eoa/specification-eoa-api/0.8.5.0/specification-eoa-api-0.8.5.0.jar</systemPath> </dependency> <!-- *********************** shared dependencies ******************************* --> <dependency> <groupId>org.bluestemsoftware.specification.eoa.ext</groupId> <artifactId>specification-eoa-ext-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>1.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.bluestemsoftware.open.eoa.application.spring</groupId> <artifactId>spring-application-api</artifactId> <version>0.8.5.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.bluestemsoftware.open.eoa.engine.spring</groupId> <artifactId>spring-engine-api</artifactId> <version>0.8.5.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>2.5.1</version> <scope>provided</scope> <optional>true</optional> <!-- project classpath only. provided by engine --> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>2.5.1</version> <scope>provided</scope> <optional>true</optional> <!-- project classpath only. provided by engine --> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>2.5.1</version> <scope>provided</scope> <optional>true</optional> <!-- project classpath only. provided by engine --> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <!-- *********************** scoped dependencies ******************************* --> <dependency> <groupId>org.bluestemsoftware.open.maven.tparty</groupId> <artifactId>xerces-impl</artifactId> <scope>compile</scope> <version>2.9.1</version> <optional>true</optional> <exclusions> <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> </exclusions> </dependency> <!-- *********************** feature dependencies ****************************** --> <!-- ********************** component dependencies ***************************** --> <dependency> <groupId>org.bluestemsoftware.open.eoa.example.application.spring10</groupId> <artifactId>example-business-docs</artifactId> <version>0.8.5.0</version> <scope>runtime</scope> <type>eoa-component</type> </dependency> <dependency> <groupId>org.bluestemsoftware.open.eoa.example.application.spring10</groupId> <artifactId>order-manager-application</artifactId> <version>${partner.version}</version> <scope>runtime</scope> <type>eoa-component</type> <optional>true</optional> </dependency> <!-- *********************** module dependencies ******************************* --> </dependencies> </project>