[svn r364] WIP for move to maven2
This commit is contained in:
parent
8fc495c6b6
commit
818ed10649
8
.settings/org.maven.ide.eclipse.prefs
Normal file
8
.settings/org.maven.ide.eclipse.prefs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
#Mon Nov 24 20:22:59 CET 2008
|
||||||
|
activeProfiles=
|
||||||
|
eclipse.preferences.version=1
|
||||||
|
fullBuildGoals=process-test-resources
|
||||||
|
includeModules=false
|
||||||
|
resolveWorkspaceProjects=true
|
||||||
|
resourceFilterGoals=process-resources resources\:testResources
|
||||||
|
version=1
|
|
@ -1,11 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project name="vasc-bin-jar" default="doBuildBinJar" basedir="../." >
|
|
||||||
|
|
||||||
<property name="destination" value="." />
|
|
||||||
<property name="source" value="bin"/>
|
|
||||||
<property name="destinationFile" value="idcanet-vasc-bin.jar"/>
|
|
||||||
|
|
||||||
<target name="doBuildBinJar">
|
|
||||||
<jar destfile="${destination}/${destinationFile}" basedir="${source}" includes="**"></jar>
|
|
||||||
</target>
|
|
||||||
</project>
|
|
|
@ -1,21 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project name="vasc-javadocs" default="javadoc" basedir="../." >
|
|
||||||
<target name="javadoc">
|
|
||||||
<javadoc access="public"
|
|
||||||
author="true"
|
|
||||||
classpath=""
|
|
||||||
destdir="doc/javadoc"
|
|
||||||
nodeprecated="false"
|
|
||||||
nodeprecatedlist="false"
|
|
||||||
noindex="false"
|
|
||||||
nonavbar="false"
|
|
||||||
notree="false"
|
|
||||||
packagenames="com.idcanet.vasc/*"
|
|
||||||
source="1.5"
|
|
||||||
sourcepath="src"
|
|
||||||
splitindex="true"
|
|
||||||
use="true"
|
|
||||||
version="true"
|
|
||||||
/>
|
|
||||||
</target>
|
|
||||||
</project>
|
|
|
@ -1,13 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project name="vasc-src-jar" default="doBuildSrcJar" basedir="../." >
|
|
||||||
|
|
||||||
<property name="destination" value="." />
|
|
||||||
<property name="source" value="src"/>
|
|
||||||
<property name="destinationFile" value="idcanet-vasc-src.jar"/>
|
|
||||||
|
|
||||||
<target name="doBuildSrcJar">
|
|
||||||
<jar destfile="${destination}/${destinationFile}" basedir="${source}" includes="**">
|
|
||||||
<include name="tests/*.java"/>
|
|
||||||
</jar>
|
|
||||||
</target>
|
|
||||||
</project>
|
|
166
pom.xml
Normal file
166
pom.xml
Normal file
|
@ -0,0 +1,166 @@
|
||||||
|
<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/xsd/maven-4.0.0.xsd">
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
<groupId>com.idcanet</groupId>
|
||||||
|
<artifactId>vasc</artifactId>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<name>Vasc with maven</name>
|
||||||
|
<url>http://maven.apache.org</url>
|
||||||
|
|
||||||
|
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>maven.dev.java.net</id>
|
||||||
|
<name>Java.net Repository for Maven</name>
|
||||||
|
<url>http://download.java.net/maven/2/</url>
|
||||||
|
<layout>default</layout>
|
||||||
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>maven.jboss.org</id>
|
||||||
|
<name>JBoss.org maven2 Repository</name>
|
||||||
|
<url>http://repository.jboss.org/maven2/</url>
|
||||||
|
<layout>default</layout>
|
||||||
|
</repository>
|
||||||
|
|
||||||
|
</repositories>
|
||||||
|
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>4.0</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>dk.eobjects.metamodel</groupId>
|
||||||
|
<artifactId>MetaModel-full</artifactId>
|
||||||
|
<version>1.1.1</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>de.odysseus.juel</groupId>
|
||||||
|
<artifactId>juel</artifactId>
|
||||||
|
<version>2.1.0</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.codehaus.mojo</groupId>
|
||||||
|
<artifactId>hibernate3-maven-plugin</artifactId>
|
||||||
|
<version>2.1</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.novell.ldap</groupId>
|
||||||
|
<artifactId>jldap</artifactId>
|
||||||
|
<version>4.3</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.idcanet</groupId>
|
||||||
|
<artifactId>x4o</artifactId>
|
||||||
|
<version>0.8-SNAPSHOT</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
</dependencies>
|
||||||
|
<build>
|
||||||
|
<directory>target</directory>
|
||||||
|
<outputDirectory>target/classes</outputDirectory>
|
||||||
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
||||||
|
<testOutputDirectory>target/test-classes</testOutputDirectory>
|
||||||
|
<sourceDirectory>src/</sourceDirectory>
|
||||||
|
<testSourceDirectory>tests/</testSourceDirectory>
|
||||||
|
<!--
|
||||||
|
<scriptSourceDirectory>build/</scriptSourceDirectory>
|
||||||
|
<testSourceDirectory>test/</testSourceDirectory>
|
||||||
|
<resources>
|
||||||
|
<resource>
|
||||||
|
<directory>src/main/resources</directory>
|
||||||
|
</resource>
|
||||||
|
</resources>
|
||||||
|
<testResources>
|
||||||
|
<testResource>
|
||||||
|
<directory>src/test/resources</directory>
|
||||||
|
</testResource>
|
||||||
|
</testResources>
|
||||||
|
-->
|
||||||
|
|
||||||
|
|
||||||
|
<plugins>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<encoding>UTF-8</encoding>
|
||||||
|
<source>1.5</source>
|
||||||
|
<target>1.5</target>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-site-plugin</artifactId>
|
||||||
|
<version>2.0-beta-7</version>
|
||||||
|
<configuration>
|
||||||
|
<outputEncoding>UTF-8</outputEncoding>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</plugins>
|
||||||
|
|
||||||
|
|
||||||
|
</build>
|
||||||
|
<!--
|
||||||
|
|
|
||||||
|
|
|
||||||
|
|
|
||||||
|
-->
|
||||||
|
<distributionManagement>
|
||||||
|
<!--
|
||||||
|
<repository>
|
||||||
|
<id>mycompany-repository</id>
|
||||||
|
<name>MyCompany Repository</name>
|
||||||
|
<url>scp://repository.mycompany.com/repository/maven2</url>
|
||||||
|
</repository>
|
||||||
|
-->
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
|
|
||||||
|
<reporting>
|
||||||
|
<outputDirectory>target/site</outputDirectory>
|
||||||
|
</reporting>
|
||||||
|
|
||||||
|
</project>
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.mycompany.myappfrmk.console</groupId>
|
||||||
|
<artifactId>console-svcs</artifactId>
|
||||||
|
<type>ejb</type>
|
||||||
|
<version>1.0</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.mycompany.myappfrmk.console</groupId>e
|
||||||
|
<artifactId>web-console</artifactId>
|
||||||
|
<type>war</type>
|
||||||
|
<version>1.0</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-ear-plugin</artifactId>
|
||||||
|
<version>2.3.1</version>
|
||||||
|
<configuration>
|
||||||
|
<generateApplicationXml>true</generateApplicationXml>
|
||||||
|
<generatedDescriptorLocation>${basedir}/target</generatedDescriptorLocation>
|
||||||
|
<finalName>FrmkConsole</finalName>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
-->
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue