blob: 123213fb7aa58d325e5ca15f61dc70c1fb59ad31 [file] [log] [blame]
Tor Norbyedbda6232016-04-27 15:10:44 -07001<!--
2 ! ASM: a very small and fast Java bytecode manipulation framework
3 ! Copyright (c) 2000-2011 INRIA, France Telecom
4 ! All rights reserved.
5 !
6 ! Redistribution and use in source and binary forms, with or without
7 ! modification, are permitted provided that the following conditions
8 ! are met:
9 ! 1. Redistributions of source code must retain the above copyright
10 ! notice, this list of conditions and the following disclaimer.
11 ! 2. Redistributions in binary form must reproduce the above copyright
12 ! notice, this list of conditions and the following disclaimer in the
13 ! documentation and/or other materials provided with the distribution.
14 ! 3. Neither the name of the copyright holders nor the names of its
15 ! contributors may be used to endorse or promote products derived from
16 ! this software without specific prior written permission.
17 !
18 ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 ! AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 ! IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 ! ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22 ! LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 ! CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 ! SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 ! INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 ! CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 ! ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
28 ! THE POSSIBILITY OF SUCH DAMAGE.
29-->
30
31<project xmlns="http://maven.apache.org/POM/4.0.0"
32 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
34 http://maven.apache.org/maven-v4_0_0.xsd">
35
36 <parent>
37 <artifactId>ow2</artifactId>
38 <groupId>org.ow2</groupId>
39 <version>1.3</version>
40 </parent>
41
42 <modelVersion>4.0.0</modelVersion>
43
44 <artifactId>asm-parent</artifactId>
45 <groupId>org.ow2.asm</groupId>
46 <version>5.0.4</version>
47 <packaging>pom</packaging>
48
49 <name>ASM</name>
50 <description>A very small and fast Java bytecode manipulation framework</description>
51 <url>http://asm.objectweb.org/</url>
52
53 <organization>
54 <name>ObjectWeb</name>
55 <url>http://www.objectweb.org/</url>
56 </organization>
57 <inceptionYear>2000</inceptionYear>
58
59 <licenses>
60 <license>
61 <name>BSD</name>
62 <url>http://asm.objectweb.org/license.html</url>
63 </license>
64 </licenses>
65
66 <developers>
67 <developer>
68 <name>Eric Bruneton</name>
69 <id>ebruneton</id>
70 <email>ebruneton@free.fr</email>
71 <roles>
72 <role>Creator</role>
73 <role>Java Developer</role>
74 </roles>
75 </developer>
76 <developer>
77 <name>Eugene Kuleshov</name>
78 <id>eu</id>
79 <email>eu@javatx.org</email>
80 <roles>
81 <role>Java Developer</role>
82 </roles>
83 </developer>
84 <developer>
85 <name>Remi Forax</name>
86 <id>forax</id>
87 <email>forax@univ-mlv.fr</email>
88 <roles>
89 <role>Java Developer</role>
90 </roles>
91 </developer>
92 </developers>
93
94 <scm>
95 <connection>scm:svn:svn://svn.forge.objectweb.org/svnroot/asm/trunk</connection>
96 <developerConnection>scm:svn:svn+ssh://${maven.username}@svn.forge.objectweb.org/svnroot/asm/trunk</developerConnection>
97 <url>http://svn.forge.objectweb.org/cgi-bin/viewcvs.cgi/asm/trunk/</url>
98 </scm>
99
100 <issueManagement>
101 <url>http://forge.objectweb.org/tracker/?group_id=23</url>
102 </issueManagement>
103
104 <dependencyManagement>
105 <dependencies>
106
107 <dependency>
108 <artifactId>asm</artifactId>
109 <groupId>${project.groupId}</groupId>
110 <version>${project.version}</version>
111 </dependency>
112
113 <dependency>
114 <artifactId>asm-tree</artifactId>
115 <groupId>${project.groupId}</groupId>
116 <version>${project.version}</version>
117 </dependency>
118
119 <dependency>
120 <artifactId>asm-analysis</artifactId>
121 <groupId>${project.groupId}</groupId>
122 <version>${project.version}</version>
123 </dependency>
124
125 <dependency>
126 <artifactId>asm-commons</artifactId>
127 <groupId>${project.groupId}</groupId>
128 <version>${project.version}</version>
129 </dependency>
130
131 <dependency>
132 <artifactId>asm-util</artifactId>
133 <groupId>${project.groupId}</groupId>
134 <version>${project.version}</version>
135 </dependency>
136
137 <dependency>
138 <artifactId>asm-xml</artifactId>
139 <groupId>${project.groupId}</groupId>
140 <version>${project.version}</version>
141 </dependency>
142
143 </dependencies>
144 </dependencyManagement>
145
146 <mailingLists>
147 <mailingList>
148 <name>ASM Users List</name>
149 <subscribe>sympa@objectweb.org?subject=subscribe%20asm</subscribe>
150 <unsubscribe>sympa@objectweb.org?subject=unsubscribe%20asm</unsubscribe>
151 <post>asm@objectweb.org</post>
152 <archive>http://www.objectweb.org/wws/arc/asm</archive>
153 </mailingList>
154 <mailingList>
155 <name>ASM Team List</name>
156 <subscribe>sympa@objectweb.org?subject=subscribe%20asm-team</subscribe>
157 <unsubscribe>sympa@objectweb.org?subject=unsubscribe%20asm-team</unsubscribe>
158 <post>asm-team@objectweb.org</post>
159 <archive>http://www.objectweb.org/wws/arc/asm-team</archive>
160 </mailingList>
161 </mailingLists>
162
163</project>