| 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>jp.javelindev</groupId> |
| 5 | | <artifactId>mvnbeans</artifactId> |
| 6 | | <packaging>jar</packaging> |
| 7 | | <version>1.0-SNAPSHOT</version> |
| 8 | | <name>mvnbeans</name> |
| 9 | | <url>http://maven.apache.org</url> |
| 10 | | <licenses> |
| 11 | | <license> |
| 12 | | <name>Apache License, Version 2.0</name> |
| 13 | | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 14 | | <distribution>repo</distribution> |
| 15 | | </license> |
| 16 | | </licenses> |
| 17 | | <scm> |
| 18 | | <connection>scm:svn:http://svn.coderepos.org/share/lang/java/mvnbeans/trunk</connection> |
| 19 | | <url>http://coderepos.org/share/browser/lang/java/mvnbeans</url> |
| 20 | | </scm> |
| 21 | | <build> |
| | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| | 4 | <modelVersion>4.0.0</modelVersion> |
| | 5 | <groupId>jp.javelindev</groupId> |
| | 6 | <artifactId>mvnbeans</artifactId> |
| | 7 | <packaging>jar</packaging> |
| | 8 | <version>1.0-SNAPSHOT</version> |
| | 9 | <name>mvnbeans</name> |
| | 10 | <url>http://maven.apache.org</url> |
| | 11 | <licenses> |
| | 12 | <license> |
| | 13 | <name>Apache License, Version 2.0</name> |
| | 14 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| | 15 | <distribution>repo</distribution> |
| | 16 | </license> |
| | 17 | </licenses> |
| | 18 | <scm> |
| | 19 | <connection>scm:svn:http://svn.coderepos.org/share/lang/java/mvnbeans/trunk</connection> |
| | 20 | <url>http://coderepos.org/share/browser/lang/java/mvnbeans</url> |
| | 21 | </scm> |
| | 22 | <build> |
| | 23 | <plugins> |
| | 24 | <plugin> |
| | 25 | <artifactId>maven-compiler-plugin</artifactId> |
| | 26 | <configuration> |
| | 27 | <source>1.5</source> |
| | 28 | <target>1.5</target> |
| | 29 | <encoding>UTF-8</encoding> |
| | 30 | </configuration> |
| | 31 | </plugin> |
| | 32 | <plugin> |
| | 33 | <artifactId>maven-surefire-plugin</artifactId> |
| | 34 | <version>2.3</version> |
| | 35 | </plugin> |
| | 36 | <plugin> |
| | 37 | <artifactId>maven-resources-plugin</artifactId> |
| | 38 | <configuration> |
| | 39 | <encoding>UTF-8</encoding> |
| | 40 | </configuration> |
| | 41 | </plugin> |
| | 42 | <plugin> |
| | 43 | <groupId>org.apache.maven.plugins</groupId> |
| | 44 | <artifactId>maven-jar-plugin</artifactId> |
| | 45 | <configuration> |
| | 46 | <archive> |
| | 47 | <manifest> |
| | 48 | <mainClass>jp.javelindev.mvnbeans.ui.App</mainClass> |
| | 49 | <addClasspath>true</addClasspath> |
| | 50 | <addExtensions>true</addExtensions> |
| | 51 | <classpathPrefix>lib</classpathPrefix> |
| | 52 | </manifest> |
| | 53 | </archive> |
| | 54 | </configuration> |
| | 55 | </plugin> |
| | 56 | <plugin> |
| | 57 | <artifactId>maven-assembly-plugin</artifactId> |
| | 58 | <configuration> |
| | 59 | <descriptor>src/main/assemblies/package.xml</descriptor> |
| | 60 | <archive> |
| | 61 | <manifest> |
| | 62 | <mainClass>jp.javelindev.mvnbeans.App</mainClass> |
| | 63 | </manifest> |
| | 64 | </archive> |
| | 65 | </configuration> |
| | 66 | </plugin> |
| | 67 | </plugins> |
| | 68 | </build> |
| | 69 | <distributionManagement> |
| | 70 | <repository> |
| | 71 | <uniqueVersion>false</uniqueVersion> |
| | 72 | <id>javelindev.jp</id> |
| | 73 | <name>JavelinDev Maven2 Repository</name> |
| | 74 | <url>scp://www.javelindev.jp/home/maven2/maven2.javelindev.jp/html/repository</url> |
| | 75 | <layout>default</layout> |
| | 76 | </repository> |
| | 77 | </distributionManagement> |
| | 78 | <profiles> |
| | 79 | <profile> |
| | 80 | <id>netbeans-public</id> |
| | 81 | <activation> |
| | 82 | <property> |
| | 83 | <name>netbeans.execution</name> |
| | 84 | <value>true</value> |
| | 85 | </property> |
| | 86 | </activation> |
| | 87 | <build> |
| 23 | | <plugin> |
| 24 | | <artifactId>maven-compiler-plugin</artifactId> |
| 25 | | <configuration> |
| 26 | | <source>1.5</source> |
| 27 | | <target>1.5</target> |
| 28 | | <encoding>UTF-8</encoding> |
| 29 | | </configuration> |
| 30 | | </plugin> |
| 31 | | <plugin> |
| 32 | | <artifactId>maven-surefire-plugin</artifactId> |
| 33 | | <version>2.3</version> |
| 34 | | </plugin> |
| 35 | | <plugin> |
| 36 | | <artifactId>maven-resources-plugin</artifactId> |
| 37 | | <configuration> |
| 38 | | <encoding>UTF-8</encoding> |
| 39 | | </configuration> |
| 40 | | </plugin> |
| 41 | | <plugin> |
| 42 | | <groupId>org.apache.maven.plugins</groupId> |
| 43 | | <artifactId>maven-jar-plugin</artifactId> |
| 44 | | <configuration> |
| 45 | | <archive> |
| 46 | | <manifest> |
| 47 | | <mainClass>jp.javelindev.mvnbeans.ui.App</mainClass> |
| 48 | | <addClasspath>true</addClasspath> |
| 49 | | <addExtensions>true</addExtensions> |
| 50 | | <classpathPrefix>lib</classpathPrefix> |
| 51 | | </manifest> |
| 52 | | </archive> |
| 53 | | </configuration> |
| 54 | | </plugin> |
| 55 | | |
| 68 | | </build> |
| 69 | | <distributionManagement> |
| 70 | | <repository> |
| 71 | | <uniqueVersion>false</uniqueVersion> |
| 72 | | <id>javelindev.jp</id> |
| 73 | | <name>JavelinDev Maven2 Repository</name> |
| 74 | | <url>scp://www.javelindev.jp/home/maven2/maven2.javelindev.jp/html/repository</url> |
| 75 | | <layout>default</layout> |
| 76 | | </repository> |
| 77 | | </distributionManagement> |
| 78 | | <profiles> |
| 79 | | <profile> |
| 80 | | <id>netbeans-public</id> |
| 81 | | <activation> |
| 82 | | <property> |
| 83 | | <name>netbeans.execution</name> |
| 84 | | <value>true</value> |
| 85 | | </property> |
| 86 | | </activation> |
| 87 | | <build> |
| 88 | | <plugins> |
| 89 | | <plugin> |
| 90 | | <artifactId>maven-jar-plugin</artifactId> |
| 91 | | <configuration> |
| 92 | | <archive> |
| 93 | | <manifest> |
| 94 | | <addClasspath>true</addClasspath> |
| 95 | | <classpathPrefix>lib</classpathPrefix> |
| 96 | | <mainClass>jp.javelindev.mvnbeans.App</mainClass> |
| 97 | | </manifest> |
| 98 | | </archive> |
| 99 | | </configuration> |
| 100 | | </plugin> |
| 101 | | <plugin> |
| 102 | | <artifactId>maven-assembly-plugin</artifactId> |
| 103 | | <executions> |
| 104 | | <execution> |
| 105 | | <id>nb</id> |
| 106 | | <phase>package</phase> |
| 107 | | <goals> |
| 108 | | <goal>directory</goal> |
| 109 | | </goals> |
| 110 | | <configuration> |
| 111 | | <descriptor>${basedir}/src/main/assemblies/netbeans-run.xml</descriptor> |
| 112 | | <finalName>executable</finalName> |
| 113 | | </configuration> |
| 114 | | </execution> |
| 115 | | </executions> |
| 116 | | </plugin> |
| 117 | | </plugins> |
| 118 | | </build> |
| 119 | | </profile> |
| 120 | | </profiles> |
| 121 | | <dependencies> |
| 122 | | <dependency> |
| 123 | | <groupId>jdom</groupId> |
| 124 | | <artifactId>jdom</artifactId> |
| 125 | | <version>1.0</version> |
| 126 | | </dependency> |
| 127 | | <dependency> |
| 128 | | <groupId>commons-vfs</groupId> |
| 129 | | <artifactId>commons-vfs</artifactId> |
| 130 | | <version>1.0</version> |
| 131 | | </dependency> |
| 132 | | <dependency> |
| 133 | | <groupId>commons-io</groupId> |
| 134 | | <artifactId>commons-io</artifactId> |
| 135 | | <version>1.3.1</version> |
| 136 | | </dependency> |
| 137 | | <dependency> |
| 138 | | <groupId>junit</groupId> |
| 139 | | <artifactId>junit</artifactId> |
| 140 | | <version>4.4</version> |
| 141 | | <scope>test</scope> |
| 142 | | </dependency> |
| 143 | | <dependency> |
| 144 | | <groupId>commons-httpclient</groupId> |
| 145 | | <artifactId>commons-httpclient</artifactId> |
| 146 | | <version>2.0.2</version> |
| 147 | | </dependency> |
| 148 | | <dependency> |
| 149 | | <groupId>jaxen</groupId> |
| 150 | | <artifactId>jaxen</artifactId> |
| 151 | | <version>1.0-FCS</version> |
| 152 | | </dependency> |
| 153 | | <dependency> |
| 154 | | <groupId>saxpath</groupId> |
| 155 | | <artifactId>saxpath</artifactId> |
| 156 | | <version>1.0-FCS</version> |
| 157 | | </dependency> |
| 158 | | <dependency> |
| 159 | | <groupId>commons-cli</groupId> |
| 160 | | <artifactId>commons-cli</artifactId> |
| 161 | | <version>1.0</version> |
| 162 | | </dependency> |
| 163 | | <dependency> |
| 164 | | <groupId>commons-collections</groupId> |
| 165 | | <artifactId>commons-collections</artifactId> |
| 166 | | <version>3.2</version> |
| 167 | | </dependency> |
| 168 | | <dependency> |
| 169 | | <groupId>commons-logging</groupId> |
| 170 | | <artifactId>commons-logging</artifactId> |
| 171 | | <version>1.1.1</version> |
| 172 | | </dependency> |
| 173 | | <dependency> |
| 174 | | <groupId>log4j</groupId> |
| 175 | | <artifactId>log4j</artifactId> |
| 176 | | <version>1.2.13</version> |
| 177 | | </dependency> |
| 178 | | <dependency> |
| 179 | | <groupId>jboss</groupId> |
| 180 | | <artifactId>javassist</artifactId> |
| 181 | | <version>3.1</version> |
| 182 | | <scope>test</scope> |
| 183 | | </dependency> |
| 184 | | </dependencies> |
| | 118 | </build> |
| | 119 | </profile> |
| | 120 | </profiles> |
| | 121 | <dependencies> |
| | 122 | <dependency> |
| | 123 | <groupId>jdom</groupId> |
| | 124 | <artifactId>jdom</artifactId> |
| | 125 | <version>1.0</version> |
| | 126 | </dependency> |
| | 127 | <dependency> |
| | 128 | <groupId>jaxen</groupId> |
| | 129 | <artifactId>jaxen</artifactId> |
| | 130 | <version>1.0-FCS</version> |
| | 131 | </dependency> |
| | 132 | <dependency> |
| | 133 | <groupId>saxpath</groupId> |
| | 134 | <artifactId>saxpath</artifactId> |
| | 135 | <version>1.0-FCS</version> |
| | 136 | </dependency> |
| | 137 | <dependency> |
| | 138 | <groupId>commons-io</groupId> |
| | 139 | <artifactId>commons-io</artifactId> |
| | 140 | <version>1.3.1</version> |
| | 141 | </dependency> |
| | 142 | <dependency> |
| | 143 | <groupId>junit</groupId> |
| | 144 | <artifactId>junit</artifactId> |
| | 145 | <version>4.4</version> |
| | 146 | <scope>test</scope> |
| | 147 | </dependency> |
| | 148 | <dependency> |
| | 149 | <groupId>commons-cli</groupId> |
| | 150 | <artifactId>commons-cli</artifactId> |
| | 151 | <version>1.0</version> |
| | 152 | </dependency> |
| | 153 | <dependency> |
| | 154 | <groupId>commons-collections</groupId> |
| | 155 | <artifactId>commons-collections</artifactId> |
| | 156 | <version>3.2</version> |
| | 157 | </dependency> |
| | 158 | <dependency> |
| | 159 | <groupId>commons-logging</groupId> |
| | 160 | <artifactId>commons-logging</artifactId> |
| | 161 | <version>1.1.1</version> |
| | 162 | </dependency> |
| | 163 | <dependency> |
| | 164 | <groupId>log4j</groupId> |
| | 165 | <artifactId>log4j</artifactId> |
| | 166 | <version>1.2.13</version> |
| | 167 | </dependency> |
| | 168 | </dependencies> |