Skip to content

Commit 3513e25

Browse files
author
snajper
committed
[maven-release-plugin] copy for tag codemodel-project-2.6
git-svn-id: https://svn.java.net/svn/codemodel~svn@320 1b0cd94c-d507-0410-907c-c8211361794a
1 parent f4509a4 commit 3513e25

119 files changed

Lines changed: 17172 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

tags/codemodel-project-2.6/LICENSE.html

Lines changed: 598 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<!--
2+
3+
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
4+
5+
Copyright (c) 2010-2011 Oracle and/or its affiliates. All rights reserved.
6+
7+
The contents of this file are subject to the terms of either the GNU
8+
General Public License Version 2 only ("GPL") or the Common Development
9+
and Distribution License("CDDL") (collectively, the "License"). You
10+
may not use this file except in compliance with the License. You can
11+
obtain a copy of the License at
12+
https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
13+
or packager/legal/LICENSE.txt. See the License for the specific
14+
language governing permissions and limitations under the License.
15+
16+
When distributing the software, include this License Header Notice in each
17+
file and include the License file at packager/legal/LICENSE.txt.
18+
19+
GPL Classpath Exception:
20+
Oracle designates this particular file as subject to the "Classpath"
21+
exception as provided by Oracle in the GPL Version 2 section of the License
22+
file that accompanied this code.
23+
24+
Modifications:
25+
If applicable, add the following below the License Header, with the fields
26+
enclosed by brackets [] replaced by your own identifying information:
27+
"Portions Copyright [year] [name of copyright owner]"
28+
29+
Contributor(s):
30+
If you wish your version of this file to be governed by only the CDDL or
31+
only the GPL Version 2, indicate your decision by adding "[Contributor]
32+
elects to include this software in this distribution under the [CDDL or GPL
33+
Version 2] license." If you don't indicate a single choice of license, a
34+
recipient has the option to distribute your version of this file under
35+
either the CDDL, the GPL Version 2 or to extend the choice of license to
36+
its licensees as provided above. However, if you add GPL Version 2 code
37+
and therefore, elected the GPL Version 2 license, then the option applies
38+
only if the new code is made subject to such option by the copyright
39+
holder.
40+
41+
-->
42+
43+
<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">
44+
<modelVersion>4.0.0</modelVersion>
45+
<groupId>com.sun.codemodel</groupId>
46+
<artifactId>codemodel-annotation-compiler</artifactId>
47+
<version>2.6</version>
48+
<name>Codemodel Annotation Compiler</name>
49+
<description>The annotation compiler ant task for the CodeModel java source code generation library</description>
50+
<parent>
51+
<groupId>com.sun.codemodel</groupId>
52+
<artifactId>codemodel-project</artifactId>
53+
<version>2.6</version>
54+
<relativePath>../pom.xml</relativePath>
55+
</parent>
56+
<dependencies>
57+
<dependency>
58+
<groupId>com.sun.codemodel</groupId>
59+
<artifactId>codemodel</artifactId>
60+
<version>2.6</version>
61+
</dependency>
62+
<dependency>
63+
<groupId>com.sun.istack</groupId>
64+
<artifactId>istack-commons-tools</artifactId>
65+
<version>2.5</version>
66+
<exclusions>
67+
<exclusion>
68+
<groupId>org.apache.ant</groupId>
69+
<artifactId>ant</artifactId>
70+
</exclusion>
71+
</exclusions>
72+
</dependency>
73+
<dependency>
74+
<groupId>org.apache.ant</groupId>
75+
<artifactId>ant</artifactId>
76+
<version>1.7.0</version>
77+
<scope>provided</scope>
78+
</dependency>
79+
</dependencies>
80+
</project>

0 commit comments

Comments
 (0)