Add README for project
[smart-selection-suite.git] / pom.xml
blob6ffb7d65089d06d13e868affe897f3d7c3fbdf65
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/maven-v4_0_0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <groupId>com.smartitengineering.demo</groupId>
5     <artifactId>SmartSelectionSuite</artifactId>
6     <packaging>pom</packaging>
7     <version>1.0-SNAPSHOT</version>
8     <name>smart-selection-suite</name>
10     <repositories>\r
11         <repository>\r
12             <id>smart-it-release-repo</id>\r
13             <name>Smart IT Engineering snapshot repo</name>\r
14             <url>http://dev.smartitengineering.com/maven-repo/release</url>\r
15             <snapshots>\r
16                 <enabled>false</enabled>\r
17             </snapshots>\r
18         </repository>\r
19         <repository>\r
20             <id>netbeans</id>\r
21             <name>repository hosting netbeans.org api artifacts</name>\r
22             <url>http://deadlock.netbeans.org/maven2</url>\r
23         </repository>
24         <repository>
25             <id>java-net</id>
26             <url>http://download.java.net/maven/2/</url>
27         </repository>\r
28     </repositories>
30     <dependencies>\r
31         <dependency>\r
32             <groupId>org.netbeans.api</groupId>\r
33             <artifactId>org-openide-util</artifactId>\r
34             <version>${netbeans-api-version}</version>\r
35         </dependency>\r
36         <dependency>\r
37             <groupId>junit</groupId>\r
38             <artifactId>junit</artifactId>\r
39             <version>3.8.1</version>\r
40             <scope>test</scope>\r
41         </dependency>\r
42     </dependencies>\r
43     <build>\r
44         <plugins>\r
45             <plugin>\r
46                 <groupId>org.apache.maven.plugins</groupId>\r
47                 <artifactId>maven-assembly-plugin</artifactId>\r
48                 <version>2.1</version>\r
49                 <inherited>false</inherited>\r
50                 <configuration>\r
51                     <descriptors>\r
52                         <descriptor>src/main/assembly/app-zip.xml</descriptor>\r
53                     </descriptors>\r
54                     <finalName>${pom.artifactId}</finalName>\r
55                 </configuration>\r
56             </plugin>\r
57             <plugin>\r
58                 <groupId>org.codehaus.mojo</groupId>\r
59                 <artifactId>nbm-maven-plugin</artifactId>\r
60                 <version>${nbm-plugin-version}</version>\r
61                 <inherited>false</inherited>\r
62                 <dependencies>\r
63                     <dependency>\r
64                         <groupId>javax.help</groupId>\r
65                         <artifactId>search</artifactId>\r
66                         <version>2.0-${netbeans-api-version}</version>\r
67                     </dependency>\r
68                 </dependencies>\r
69                 <configuration>\r
70                     <brandingToken>site</brandingToken>\r
71                     <cluster>SmartSelectionSuite</cluster>\r
72                     <enabledClusters>\r
73                         <enabledCluster>platform8</enabledCluster>\r
74                         <enabledCluster>SmartSelectionSuite</enabledCluster>\r
75                             <!--enabledCluster>ide</enabledCluster-->\r
76                             <!--enabledCluster>enterprise</enabledCluster-->\r
77                     </enabledClusters>\r
78                 </configuration>\r
79                 <executions>\r
80                     <execution>\r
81                         <id>branding</id>\r
82                         <phase>process-resources</phase>\r
83                         <goals>\r
84                             <goal>branding</goal>\r
85                         </goals>\r
86                     </execution>\r
87                 </executions>\r
88             </plugin>\r
89             <plugin>\r
90                 <groupId>org.apache.maven.plugins</groupId>\r
91                 <artifactId>maven-compiler-plugin</artifactId>\r
92                 <version>2.0.2</version>\r
93                 <configuration>\r
94                     <source>1.5</source>\r
95                     <target>1.5</target>\r
96                 </configuration>\r
97             </plugin>\r
98         </plugins>\r
99     </build>\r
100     <modules>\r
101         <module>my-editor</module>\r
102         <module>my-viewer</module>\r
103         <module>my-api</module>\r
104         <module>domain</module>\r
105     </modules>\r
106     <properties>\r
107         <nbm-plugin-version>2.6.2</nbm-plugin-version>\r
108         <netbeans-api-version>RELEASE61</netbeans-api-version>\r
109     </properties>\r
110 </project>