diff options
Diffstat (limited to 'sqlelements/pom.xml')
| -rw-r--r-- | sqlelements/pom.xml | 169 |
1 files changed, 169 insertions, 0 deletions
diff --git a/sqlelements/pom.xml b/sqlelements/pom.xml new file mode 100644 index 0000000..6c25526 --- /dev/null +++ b/sqlelements/pom.xml @@ -0,0 +1,169 @@ +<project> + <modelVersion>4.0.0</modelVersion> + <groupId>org.israfil</groupId> + <artifactId>sqlelements</artifactId> + <packaging>jar</packaging> + <version>0.9-SNAPSHOT</version> + <name>SQLElements</name> + <url>http://sqlelements.sourceforge.net</url> + <build> + <defaultGoal>install</defaultGoal> + <plugins> + <!-- + <plugin> + <artifactId>maven-release-plugin</artifactId> + <configuration> + <tagBase>svn+ssh://source.israfil.net/repos/svn/israfil.foundation/tags</tagBase> + </configuration> + </plugin> + --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>11</source> + <target>11</target> + </configuration> + </plugin> + </plugins> + </build> + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>3.8.1</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>net.israfil.foundation</groupId> + <artifactId>israfil-foundation-cache</artifactId> + <version>1.0.1-SNAPSHOT</version> + </dependency> + <dependency> + <groupId>net.israfil.foundation</groupId> + <artifactId>israfil-foundation-collections</artifactId> + <version>1.0.3-SNAPSHOT</version> + </dependency> + </dependencies> + <issueManagement> + <system>SourceForge</system> + <url>http://sourceforge.net/tracker/?group_id=139021</url> + </issueManagement> + <ciManagement> + <system>continuum</system> + <url/> + <notifiers> + <notifier> + <type/> + <sendOnError/> + <sendOnFailure/> + <sendOnSuccess/> + <sendOnWarning/> + <address/> + <configuration/> + </notifier> + </notifiers> + </ciManagement> + <inceptionYear>2005</inceptionYear> + <mailingLists> + <mailingList> + <name>sqlelements-cvs</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/sqlelements-cvs</subscribe> + <post>sqlelements-cvs@lists.sourceforge.net</post> + <!-- <archive/><otherArchives/> --> + </mailingList> + <mailingList> + <name>sqlelements-devel</name> + <subscribe>http://lists.sourceforge.net/lists/listinfo/sqlelements-devel</subscribe> + <post>sqlelements-devel@lists.sourceforge.net</post> + <!-- <archive/><otherArchives/> --> + </mailingList> + </mailingLists> + <developers> + <developer> + <!--<id>cgruber</id>--> + <name>Christian Gruber</name> + <email>cgruber@israfil.net</email> + <organization>Israfil Consulting Services Corporation</organization> + <url>http://www.israfil.net/</url> + <timezone>-5</timezone> + <roles> + <role>Admin</role> + <role>Architect</role> + <role>Developer</role> + <role>Build Manager</role> + </roles> + </developer> + <developer> + <!--<id>under_score</id>--> + <name>Miskhin Berteig</name> + <email>mishkin@berteigconsulting.com</email> + <organization>Berteig Consulting, Inc.</organization> + <url>http://www.berteigconsulting.com/</url> + <timezone>-5</timezone> + <roles> + <role>Developer</role> + <role>Test Auditor</role> + </roles> + </developer> + </developers> + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-pmd-plugin</artifactId> + <configuration> + <targetJdk>1.5</targetJdk> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>surefire-report-maven-plugin</artifactId> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>cobertura-maven-plugin</artifactId> + </plugin> + </plugins> + </reporting> + <scm> + <connection> + scm:cvs:pserver:anonymous@anoncvs.sourceforge.net:/cvsroot/sqlelements:sqlelements + </connection> + <developerConnection> + scm:cvs:extssh:username@cvs.sourceforge.net:/cvsroot/sqlelements:sqlelements + </developerConnection> + <url>http://cvs.sourceforge.net/viewcvs.py/sqlelements</url> + </scm> + <repositories> + <repository> + <id>ibiblio</id> + <name>iBiblio Mojo</name> + <url>http://www.ibiblio.org/maven2</url> + </repository> + </repositories> + <distributionManagement> + <!-- use the following if you're not using a snapshot version. --> + <repository> + <id>local</id> + <name>Local Deploy</name> + <url>ftp://uploads.sourceforge.net/incoming</url> + <!--<url>file:///E:/tmp/i-deploy</url>--> + </repository> + <!-- use the following if you ARE using a snapshot version. --> + <snapshotRepository> + <id>local</id> + <name>Local Snapshot</name> + <url>ftp://uploads.sourceforge.net/incoming</url> + <!--<url>file:///E:/tmp/i-deploy</url>--> + </snapshotRepository> + <site> + <id>website</id> + <url>scp://cgruber@shell.sourceforge.net/home/groups/s/sq/sqlelements/htdocs</url> + </site> + </distributionManagement> +</project> |
