summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorBenjamin Culkin <scorpress@gmail.com>2024-05-27 11:38:33 -0400
committerBenjamin Culkin <scorpress@gmail.com>2024-05-27 11:38:33 -0400
commit7c279747beb43c7e88633a6228a155a30e6834f7 (patch)
tree511176048944fa7332dc1a163a6148c46e7c61b3 /pom.xml
Initial import
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml151
1 files changed, 151 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..fdefa44
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,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>