Repository: cayenne Updated Branches: refs/heads/master 01815158c -> 59d93045f
CAY-2372 Extract web-module Project: http://git-wip-us.apache.org/repos/asf/cayenne/repo Commit: http://git-wip-us.apache.org/repos/asf/cayenne/commit/066d176f Tree: http://git-wip-us.apache.org/repos/asf/cayenne/tree/066d176f Diff: http://git-wip-us.apache.org/repos/asf/cayenne/diff/066d176f Branch: refs/heads/master Commit: 066d176f457e54c7af6376b2ccacb71d3128cbc0 Parents: 0327a10 Author: Arseni Bulatski <[email protected]> Authored: Tue Oct 31 11:13:32 2017 +0300 Committer: Arseni Bulatski <[email protected]> Committed: Wed Nov 22 10:07:40 2017 +0300 ---------------------------------------------------------------------- cayenne-web/pom.xml | 79 ++++++++++++++++++++++++++++++++++++++++++++++++ pom.xml | 1 + 2 files changed, 80 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cayenne/blob/066d176f/cayenne-web/pom.xml ---------------------------------------------------------------------- diff --git a/cayenne-web/pom.xml b/cayenne-web/pom.xml new file mode 100644 index 0000000..46e7337 --- /dev/null +++ b/cayenne-web/pom.xml @@ -0,0 +1,79 @@ +<?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>cayenne-parent</artifactId> + <groupId>org.apache.cayenne</groupId> + <version>4.1.M2-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + + <artifactId>cayenne-web</artifactId> + <name>cayenne-web: Cayenne Web Extensions</name> + <packaging>jar</packaging> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + <scope>provided</scope> + <optional>true</optional> + </dependency> + </dependencies> + </dependencyManagement> + + <dependencies> + <dependency> + <groupId>org.apache.cayenne</groupId> + <artifactId>cayenne-di</artifactId> + <version>${project.version}</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.apache.cayenne</groupId> + <artifactId>cayenne-server</artifactId> + <version>${project.version}</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>javax.servlet</groupId> + <artifactId>javax.servlet-api</artifactId> + <version>RELEASE</version> + </dependency> + <!-- Test dependencies --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.apache.cayenne.build-tools</groupId> + <artifactId>cayenne-test-utilities</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>com.mockrunner</groupId> + <artifactId>mockrunner-servlet</artifactId> + </dependency> + <dependency> + <groupId>org.hsqldb</groupId> + <artifactId>hsqldb</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-simple</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + + +</project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cayenne/blob/066d176f/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 0f86ba0..8ac1e2c 100644 --- a/pom.xml +++ b/pom.xml @@ -79,6 +79,7 @@ <module>tutorials</module> <module>docs</module> <module>assembly</module> + <module>cayenne-web</module> </modules> <issueManagement> <system>jira</system>
