-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
146 lines (146 loc) · 4.07 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>no.bekk.fitnesse.plugins.widgets</groupId>
<artifactId>fitnesse-pom-widget</artifactId>
<packaging>jar</packaging>
<version>1.2</version>
<name>FitNesse POM Widget</name>
<description>FitNesse POM classpath generator widget.</description>
<url>http://boss.bekk.no/fitnesse-pom-widget</url>
<developers>
<developer>
<id>eivindw</id>
<name>Eivind Waaler</name>
<email>eivind.waaler@bekk.no</email>
<roles>
<role>Developer</role>
</roles>
<organization>BEKK</organization>
<timezone>+1</timezone>
</developer>
<developer>
<id>nilsga</id>
<name>Nils-Helge Garli</name>
<email>nils-helge.garli@bekk.no</email>
<roles>
<role>Developer</role>
</roles>
<organization>BEKK</organization>
<timezone>+1</timezone>
</developer>
<developer>
<id>torbjorn</id>
<name>Torbjorn Vatn</name>
<email>torbjorn.vatn@bekk.no</email>
<roles>
<role>Developer</role>
</roles>
<organization>BEKK</organization>
<timezone>+1</timezone>
</developer>
</developers>
<!--scm>
<connection>scm:svn:https://boss.bekk.no/repos/projects/fitnesse-pom-widget/tags/fitnesse-pom-widget-1.2</connection>
<developerConnection>scm:svn:https://boss.bekk.no/repos/projects/fitnesse-pom-widget/tags/fitnesse-pom-widget-1.2</developerConnection>
<url>https://boss.bekk.no/repos/projects/fitnesse-pom-widget/tags/fitnesse-pom-widget-1.2</url>
</scm-->
<organization>
<name>BOSS</name>
<url>http://boss.bekk.no/</url>
</organization>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<templateFile>
${basedir}/src/site/site-template.vm
</templateFile>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.fitnesse</groupId>
<artifactId>fitnesse</artifactId>
<version>20070619</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-embedder</artifactId>
<version>2.0.4</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.8</version>
<scope>test</scope>
<classifier>jdk15</classifier>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>
maven-project-info-reports-plugin
</artifactId>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>changelog-maven-plugin</artifactId>
</plugin>
</plugins>
</reporting>
<distributionManagement>
<site>
<id>boss</id>
<url>file:/srv/www/htdocs/fitnesse-pom-widget</url>
</site>
<repository>
<id>boss</id>
<url>
file:/usr/local/jboss-4.0.4.GA/proximity/inhouse/storage
</url>
</repository>
<snapshotRepository>
<id>boss</id>
<url>
file:/usr/local/jboss-4.0.4.GA/proximity/inhouse.snapshot/storage
</url>
</snapshotRepository>
</distributionManagement>
</project>