blob: fdefa443b2edaad908abe743d4409d0e1d573934 (
plain)
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
147
148
149
150
151
|
<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>net.israfil.foundation</groupId>
<artifactId>israfil-foundation-all</artifactId>
<version>5-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Israfil Foundation: All</name>
<description>Foundation Frameworks from Israfil Consulting Services</description>
<inceptionYear>2006</inceptionYear>
<url>http://www.israfil.net/projects/foundation</url>
<modules>
<module>israfil-foundation-core</module>
<module>israfil-foundation-dynamic</module>
<module>israfil-foundation-cache</module>
<module>israfil-foundation-collections</module>
<module>israfil-foundation-container</module>
<module>israfil-foundation-concurrent</module>
<module>israfil-foundation-lifecycle</module>
<module>israfil-foundation-notification</module>
<module>israfil-foundation-testing</module>
<module>israfil-foundation-nspace</module>
<module>israfil-foundation-valuemodel</module>
</modules>
<licenses>
<license>
<name>BSD</name>
<distribution>repo</distribution>
<url>http://www.israfil.net/israfil-license-bsd.txt</url>
<comments>A simple open-source license with minimal restrictions</comments>
</license>
</licenses>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<tagBase>https://israfil-foundation.googlecode.com/svn/tags/RELEASE</tagBase>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<executions>
<execution><goals><goal>clean</goal></goals></execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>5.7</version>
<classifier>jdk15</classifier>
<exclusions>
<exclusion>
<artifactId>junit</artifactId>
<groupId>junit</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jmock</groupId>
<artifactId>jmock</artifactId>
<version>2.4.0</version>
</dependency>
</dependencies>
<distributionManagement>
<!-- use the following if you're not using a snapshot version. -->
<repository>
<id>israfil</id>
<name>Israfil Deploy</name>
<url>scp://repo.israfil.net/var/www/vhosts/repo.israfil.net/htdocs/maven2</url>
</repository>
<!-- use the following if you ARE using a snapshot version. -->
<snapshotRepository>
<id>israfil</id>
<name>Israfil Snapshot</name>
<url>scp://repo.israfil.net/var/www/vhosts/repo.israfil.net/htdocs/maven2-snapshots</url>
</snapshotRepository>
<site>
<id>website</id>
<url>scp://projects.israfil.net/var/www/vhosts/projects.israfil.net/htdocs/foundation</url>
</site>
</distributionManagement>
<reporting>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jxr-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>surefire-report-maven-plugin</artifactId>
<configuration>
<forkMode>always</forkMode>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>taglist-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.google.testability-explorer</groupId>
<artifactId>maven2-testability-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<xmlOutput>false</xmlOutput>
<threshold>Normal</threshold>
<effort>Default</effort>
<!--
<excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>
<includeFilterFile>findbugs-include.xml</includeFilterFile>
-->
<visitors>FindDeadLocalStores,UnreadFields</visitors>
<omitVisitors>FindDeadLocalStores,UnreadFields</omitVisitors>
<!-- <pluginList>/libs/fb-contrib/fb-contrib-2.8.0.jar</pluginList> -->
</configuration>
</plugin>
</plugins>
</reporting>
<scm>
<connection>scm:svn:http://israfil-foundation.googlecode.com/svn/trunk</connection>
<developerConnection>scm:svn:https://israfil-foundation.googlecode.com/svn/trunk</developerConnection>
<url>http://israfil-foundation.googlecode.com/svn</url>
</scm>
</project>
|