OSDN Git Service

upgrade version of required library ASM (2.2.3 -> 3.1)
[stigmata/stigmata-plugins.git] / wsp / pom.xml
1 <?xml version="1.0"?>
2
3 <project>
4   <parent>
5     <artifactId>plugins</artifactId>
6     <groupId>jp.sourceforge.stigmata</groupId>
7     <version>1.0</version>
8   </parent>
9
10   <modelVersion>4.0.0</modelVersion>
11   <groupId>jp.sourceforge.stigmata.plugins</groupId>
12   <artifactId>wsp</artifactId>
13   <name>wsp</name>
14   <version>1.0.0-SNAPSHOT</version>
15   <url>http://maven.apache.org</url>
16
17   <dependencies>
18     <dependency>
19       <groupId>jp.sourceforge</groupId>
20       <artifactId>stigmata</artifactId>
21       <version>2.0.0</version>
22       <scope>provided</scope>
23     </dependency>
24     <dependency>
25       <groupId>asm</groupId>
26       <artifactId>asm-all</artifactId>
27       <version>3.1</version>
28       <scope>compile</scope>
29     </dependency>
30   </dependencies>
31
32   <build>
33     <plugins>
34       <plugin>
35         <groupId>org.apache.maven.plugins</groupId>
36         <artifactId>maven-dependency-plugin</artifactId>
37         <executions>
38           <execution>
39             <id>copy-dependencies</id>
40             <phase>compile</phase>
41             <goals>
42               <goal>copy-dependencies</goal>
43             </goals>
44             <configuration>
45               <outputDirectory>${project.build.directory}</outputDirectory>
46               <includeScope>runtime</includeScope>
47             </configuration>
48           </execution>
49         </executions>
50       </plugin>
51     </plugins>
52   </build>
53 </project>