forked from misdoro/VAMDC-Portal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed to ear web archive structure, not yet working (dependency iss…
…ues)
- Loading branch information
Showing
194 changed files
with
400 additions
and
3,784 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
.* | ||
build/* | ||
target/* | ||
portal/target/* | ||
portal/build/* | ||
portal-test/bin/* | ||
*/build/* | ||
*/target/* | ||
!.gitignore | ||
*.class |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<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>org.vamdc</groupId> | ||
<artifactId>portal</artifactId> | ||
<version>3.0.0-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>portal - parent</name> | ||
<description>VAMDC Portal (r)evolution - root project</description> | ||
|
||
<parent> | ||
<groupId>org.jboss.seam</groupId> | ||
<artifactId>root</artifactId> | ||
<version>2.2.2.Final</version> | ||
</parent> | ||
|
||
<modules> | ||
<module>portal.ear</module> | ||
<module>portal.war</module> | ||
<module>portal.ejb</module> | ||
</modules> | ||
|
||
<properties> | ||
<junit.version>4.10</junit.version> | ||
<persistence-api.version>1.0</persistence-api.version> | ||
<hibernate-commons-annotations.version>3.3.0.ga</hibernate-commons-annotations.version> | ||
<richfaces.version>3.3.3.Final</richfaces.version> | ||
<servlet.version>2.5</servlet.version> | ||
</properties> | ||
|
||
<repositories> | ||
<repository> | ||
<id>jboss-public-repository-group</id> | ||
<name>JBoss Public Maven Repository Group</name> | ||
<url>http://repository.jboss.org/nexus/content/groups/public</url> | ||
</repository> | ||
<repository> | ||
<id>vamdc repository</id> | ||
<name>VAMDC stuff for Maven</name> | ||
<url>http://vamdc.doronin.org/maven/</url> | ||
<layout>default</layout> | ||
</repository> | ||
</repositories> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
<source>1.6</source> | ||
<target>1.6</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.5</version> | ||
<configuration> | ||
<argLine>-Dsun.lang.ClassLoader.allowArraySyntax=true</argLine> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
Oops, something went wrong.