OSDN Git Service

update document
[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://stigmata.sourceforge.jp/plugins/wsp/</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         <artifactId>maven-release-plugin</artifactId>
36         <configuration>
37           <tagBase>svn+ssh://tama3@svn.sourceforge.jp/svnroot/stigmata/plugins/tags/wsp/</tagBase>
38         </configuration>
39       </plugin>
40
41       <plugin>
42         <groupId>org.apache.maven.plugins</groupId>
43         <artifactId>maven-dependency-plugin</artifactId>
44         <executions>
45           <execution>
46             <id>copy-dependencies</id>
47             <phase>compile</phase>
48             <goals>
49               <goal>copy-dependencies</goal>
50             </goals>
51             <configuration>
52               <outputDirectory>${project.build.directory}</outputDirectory>
53               <includeScope>runtime</includeScope>
54             </configuration>
55           </execution>
56         </executions>
57       </plugin>
58     </plugins>
59   </build>
60 </project>