-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpom.xml
89 lines (74 loc) · 2.5 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?xml version="1.0" encoding="UTF-8"?>
<!--
========================================================================================================================
pom.xml
Copyright (c) 2013 Manning Publications Co.
Willie Wheeler ([email protected])
Book: http://manning.com/wheeler/
Blog: http://springinpractice.com/
Code: https://github.com/springinpractice
========================================================================================================================
-->
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.springinpractice</groupId>
<artifactId>com.springinpractice.top</artifactId>
<version>1.0-RELEASE</version>
</parent>
<artifactId>com.springinpractice.12_01</artifactId>
<packaging>war</packaging>
<name>Spring in Practice Recipe 12.1</name>
<description>Recipe 12.1 shows how to store content in a content repository.</description>
<url>http://springinpractice.com/</url>
<properties>
<chapter.number>12</chapter.number>
<chapter.conf.dir>${sip.conf.dir}/sip${chapter.number}</chapter.conf.dir>
<spring.jcr.version>1.0-SNAPSHOT</spring.jcr.version>
</properties>
<dependencies>
<dependency>
<groupId>com.springinpractice</groupId>
<artifactId>com.springinpractice.api</artifactId>
<version>1.0-RELEASE</version>
</dependency>
<!-- Java -->
<dependency>
<groupId>javax.inject</groupId>
<artifactId>com.springsource.javax.inject</artifactId>
</dependency>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
</dependency>
<!-- Spring -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.transaction</artifactId>
</dependency>
<!-- JCR -->
<dependency>
<groupId>javax.jcr</groupId>
<artifactId>jcr</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>jackrabbit-core</artifactId>
<version>2.3.2</version>
</dependency>
<!-- Spring/JCR -->
<dependency>
<groupId>org.springmodules</groupId>
<artifactId>org.springmodules.jcr</artifactId>
<version>${spring.jcr.version}</version>
</dependency>
<!-- Other -->
<dependency>
<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
</dependency>
</dependencies>
</project>