1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <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" >
3+ <modelVersion >4.0.0</modelVersion >
4+ <groupId >jp.codic.plugins.netbeans</groupId >
5+ <artifactId >codic-netbeans-plugin</artifactId >
6+ <version >1.0.0</version >
7+ <packaging >nbm</packaging >
8+ <properties >
9+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
10+ <netbeans .api.version>RELEASE81</netbeans .api.version>
11+ </properties >
12+ <build >
13+ <plugins >
14+ <plugin >
15+ <groupId >org.codehaus.mojo</groupId >
16+ <artifactId >nbm-maven-plugin</artifactId >
17+ <version >3.13</version >
18+ <extensions >true</extensions >
19+ <configuration >
20+ <codeNameBase >jp.codic.plugins.netbneas</codeNameBase >
21+ <author >Junichi Yamamoto(junichi11)</author >
22+ <licenseName >The MIT License</licenseName >
23+ <licenseFile >license.txt</licenseFile >
24+ <requiresRestart >true</requiresRestart >
25+ <homePageUrl >https://github.com/codic-project/codic-netbeans-plugin</homePageUrl >
26+ </configuration >
27+ </plugin >
28+ <plugin >
29+ <groupId >org.apache.maven.plugins</groupId >
30+ <artifactId >maven-compiler-plugin</artifactId >
31+ <version >2.5.1</version >
32+ <configuration >
33+ <source >1.7</source >
34+ <target >1.7</target >
35+ </configuration >
36+ </plugin >
37+ <plugin >
38+ <groupId >org.apache.maven.plugins</groupId >
39+ <artifactId >maven-jar-plugin</artifactId >
40+ <version >2.4</version >
41+ <configuration >
42+ <useDefaultManifestFile >true</useDefaultManifestFile >
43+ </configuration >
44+ </plugin >
45+ <plugin >
46+ <groupId >org.apache.maven.plugins</groupId >
47+ <artifactId >maven-surefire-plugin</artifactId >
48+ <version >2.15</version >
49+ </plugin >
50+ </plugins >
51+ </build >
52+ <repositories >
53+ <repository >
54+ <id >netbeans</id >
55+ <name >Repository hosting NetBeans modules</name >
56+ <url >http://bits.netbeans.org/nexus/content/groups/netbeans</url >
57+ <snapshots >
58+ <enabled >false</enabled >
59+ </snapshots >
60+ </repository >
61+ </repositories >
62+ <dependencies >
63+ <dependency >
64+ <groupId >org.netbeans.api</groupId >
65+ <artifactId >org-netbeans-api-annotations-common</artifactId >
66+ <version >${netbeans.api.version} </version >
67+ </dependency >
68+ <dependency >
69+ <groupId >org.netbeans.api</groupId >
70+ <artifactId >org-openide-util</artifactId >
71+ <version >${netbeans.api.version} </version >
72+ </dependency >
73+ <dependency >
74+ <groupId >com.google.code.gson</groupId >
75+ <artifactId >gson</artifactId >
76+ <version >2.5</version >
77+ </dependency >
78+ <dependency >
79+ <groupId >org.netbeans.api</groupId >
80+ <artifactId >org-netbeans-modules-editor-lib</artifactId >
81+ <version >${netbeans.api.version} </version >
82+ <type >jar</type >
83+ </dependency >
84+ <dependency >
85+ <groupId >org.netbeans.api</groupId >
86+ <artifactId >org-netbeans-modules-editor</artifactId >
87+ <version >${netbeans.api.version} </version >
88+ <type >jar</type >
89+ </dependency >
90+ <dependency >
91+ <groupId >org.netbeans.api</groupId >
92+ <artifactId >org-netbeans-modules-projectapi</artifactId >
93+ <version >${netbeans.api.version} </version >
94+ <type >jar</type >
95+ </dependency >
96+ <dependency >
97+ <groupId >org.netbeans.api</groupId >
98+ <artifactId >org-openide-filesystems</artifactId >
99+ <version >${netbeans.api.version} </version >
100+ </dependency >
101+ <dependency >
102+ <groupId >org.netbeans.api</groupId >
103+ <artifactId >org-openide-awt</artifactId >
104+ <version >${netbeans.api.version} </version >
105+ <type >jar</type >
106+ </dependency >
107+ <dependency >
108+ <groupId >org.netbeans.api</groupId >
109+ <artifactId >org-netbeans-modules-options-api</artifactId >
110+ <version >${netbeans.api.version} </version >
111+ <type >jar</type >
112+ </dependency >
113+ <dependency >
114+ <groupId >org.netbeans.api</groupId >
115+ <artifactId >org-openide-dialogs</artifactId >
116+ <version >${netbeans.api.version} </version >
117+ </dependency >
118+ <dependency >
119+ <groupId >org.netbeans.api</groupId >
120+ <artifactId >org-openide-util-ui</artifactId >
121+ <version >${netbeans.api.version} </version >
122+ </dependency >
123+ <dependency >
124+ <groupId >org.netbeans.api</groupId >
125+ <artifactId >org-openide-util-lookup</artifactId >
126+ <version >${netbeans.api.version} </version >
127+ </dependency >
128+ <dependency >
129+ <groupId >org.netbeans.api</groupId >
130+ <artifactId >org-openide-windows</artifactId >
131+ <version >${netbeans.api.version} </version >
132+ </dependency >
133+ <dependency >
134+ <groupId >org.netbeans.api</groupId >
135+ <artifactId >org-openide-text</artifactId >
136+ <version >${netbeans.api.version} </version >
137+ </dependency >
138+ <dependency >
139+ <groupId >org.netbeans.external</groupId >
140+ <artifactId >org-apache-commons-lang</artifactId >
141+ <version >${netbeans.api.version} </version >
142+ </dependency >
143+ <dependency >
144+ <groupId >junit</groupId >
145+ <artifactId >junit</artifactId >
146+ <version >4.12</version >
147+ <scope >test</scope >
148+ </dependency >
149+ <dependency >
150+ <groupId >org.hamcrest</groupId >
151+ <artifactId >hamcrest-core</artifactId >
152+ <version >1.3</version >
153+ <scope >test</scope >
154+ </dependency >
155+ <dependency >
156+ <groupId >org.netbeans.api</groupId >
157+ <artifactId >org-netbeans-modules-projectuiapi</artifactId >
158+ <version >${netbeans.api.version} </version >
159+ </dependency >
160+ <dependency >
161+ <groupId >org.netbeans.api</groupId >
162+ <artifactId >org-netbeans-modules-autoupdate-services</artifactId >
163+ <version >${netbeans.api.version} </version >
164+ <type >jar</type >
165+ </dependency >
166+ <dependency >
167+ <groupId >org.netbeans.api</groupId >
168+ <artifactId >org-openide-modules</artifactId >
169+ <version >${netbeans.api.version} </version >
170+ </dependency >
171+ </dependencies >
172+ <name >Codic</name >
173+ <description >This plugin provides support for Codic.
174+ </description >
175+ </project >
0 commit comments