-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpom.xml
More file actions
91 lines (83 loc) · 3.38 KB
/
pom.xml
File metadata and controls
91 lines (83 loc) · 3.38 KB
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
90
91
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>scriptella-examples</groupId>
<version>1.0-SNAPSHOT</version>
<artifactId>spring-example</artifactId>
<packaging>jar</packaging>
<name>Example of using Scriptella from Spring</name>
<properties>
<scriptella.version>1.1-SNAPSHOT</scriptella.version>
<org.springframework.version>3.0.6.RELEASE</org.springframework.version>
</properties>
<distributionManagement>
<!-- see https://issues.sonatype.org/browse/OSSRH-413 -->
<repository>
<id>scriptella-releases</id>
<name>Scriptella Central Repository</name>
<url>http://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>scriptella-snapshots</id>
<name>Scriptella Central Development Repository</name>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>4.10</version>
</dependency>
<dependency>
<groupId>com.javaforge.scriptella</groupId>
<artifactId>scriptella-core</artifactId>
<version>${scriptella.version}</version>
</dependency>
<dependency>
<groupId>com.javaforge.scriptella</groupId>
<artifactId>scriptella-drivers</artifactId>
<version>${scriptella.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jexl</artifactId>
<version>2.0.1</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.0.206</version>
</dependency>
<!--
Core utilities used by other modules.
Define this if you use Spring Utility APIs (org.springframework.core.*/org.springframework.util.*)
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${org.springframework.version}</version>
</dependency>
<!--
Bean Factory and JavaBeans utilities (depends on spring-core)
Define this if you use Spring Bean APIs (org.springframework.beans.*)
-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${org.springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${org.springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${org.springframework.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>