This repository was archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 319
/
Copy pathpom.xml
89 lines (86 loc) · 3.91 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"?>
<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 https://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.osgi.bundle</artifactId>
<version>2.0.0.RELEASE</version>
<relativePath>../runtime/osgi-bundle</relativePath>
</parent>
<artifactId>org.springframework.roo.annotations</artifactId>
<packaging>pom</packaging>
<name>Spring Roo - Annotations (ASLv2 Licensed)</name>
<dependencies>
<!-- Roo Configurable Annotations -->
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.addon.configurable.annotations</artifactId>
</dependency>
<!-- Roo JavaBean Annotations -->
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.addon.javabean.annotations</artifactId>
</dependency>
<!-- Roo JPA Annotations -->
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.addon.jpa.annotations</artifactId>
</dependency>
<!-- Roo Layers Repository JPA Annotations -->
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.addon.layers.repository.jpa.annotations</artifactId>
</dependency>
<!-- Roo Layers Service Annotations -->
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.addon.layers.service.annotations</artifactId>
</dependency>
<!-- Roo Plural Annotations -->
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.addon.plural.annotations</artifactId>
</dependency>
<!-- Roo Security Annotations -->
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.addon.security.annotations</artifactId>
</dependency>
<!-- Roo Web MVC Controller Annotations -->
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.addon.web.mvc.controller.annotations</artifactId>
</dependency>
<!-- Roo Web MVC Exceptions Annotations -->
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.addon.web.mvc.exceptions.annotations</artifactId>
</dependency>
<!-- Roo Web MVC Thymeleaf Annotations -->
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.addon.web.mvc.thymeleaf.annotations</artifactId>
</dependency>
<!-- Roo Classpath Annotations -->
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.classpath</artifactId>
</dependency>
<!-- Roo DTO Annotations -->
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.addon.dto.annotations</artifactId>
</dependency>
<!-- Roo WS Annotations -->
<dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.addon.ws.annotations</artifactId>
</dependency>
<!-- Excluded annotations on Spring Roo 2.0.M2 -->
<!-- <dependency>
<groupId>org.springframework.roo</groupId>
<artifactId>org.springframework.roo.addon.dbre.annotations</artifactId>
</dependency>-->
</dependencies>
</project>