md4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>gr.abiss.md4j</groupId>
<artifactId>md4j</artifactId>
<version>0.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
/*
* Copyright 2004-2005 Emmanouil Batsis
*
* Licensed under the GNU General Public License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.gnu.org/licenses/gpl.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
-->
<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>
<parent>
<groupId>gr.abiss</groupId>
<artifactId>pom</artifactId>
<version>1.0</version>
</parent>
<packaging>jar</packaging>
<groupId>gr.abiss.md4j</groupId>
<artifactId>md4j</artifactId>
<name>MD4J</name>
<version>0.2</version>
<description>MD4J is a passive, model driven, extensible J2EE webapp generator. Currently
Hibernate 3 mappings are supported as input, with EJB 2.1, Struts 1.x and JSP 2.0 as output for
CRUD and Search operations with patterns like MVC, DAO and SessionFacade. Ant task included.</description>
<url>http://dev.abiss.gr/md4j/</url>
<inceptionYear>2003</inceptionYear>
<mailingLists>
<mailingList>
<name>${pom.name} User Mailing list</name>
<subscribe>http://lists.sourceforge.net/lists/listinfo/${pom.artifactId}-user</subscribe>
<unsubscribe>http://lists.sourceforge.net/lists/listinfo/${pom.artifactId}-user</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum_name=${pom.artifactId}-user</archive>
</mailingList>
</mailingLists>
<licenses>
<license>
<name>The GNU General Public License, Version 2</name>
<url>http://www.gnu.org/licenses/gpl.txt</url>
</license>
</licenses>
<scm>
<connection>scm:cvs:pserver:anonymous@${pom.artifactId}.cvs.sourceforge.net:/cvsroot/${pom.artifactId}:${pom.artifactId}</connection>
<developerConnection>scm:cvs:ext:${maven.username}@${pom.artifactId}.cvs.sourceforge.net:/cvsroot/${pom.artifactId}:${pom.artifactId}</developerConnection>
<url>http://${pom.artifactId}.cvs.sourceforge.net/${pom.artifactId}</url>
</scm>
<issueManagement>
<system>Sourceforge Tracker</system>
<url>http://sourceforge.net/tracker/?group_id=150959</url>
</issueManagement>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test</testSourceDirectory>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/xslt</directory>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/site/xdoc-filtered</directory>
<targetPath>../generated-site-files</targetPath>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<!-- compilation config -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.4</source>
<target>1.4</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/NaughtyTest.java</exclude>
</excludes>
<includes>
<include>**/*Test.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>2.0-beta-5</version>
<configuration>
<xdocDirectory> ${project.build.directory}/generated-site-files </xdocDirectory>
</configuration>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>site</phase>
<configuration>
<tasks>
<echo>Fixing javadoc stylesheet...</echo>
<copy file="src/site/css/javadoc.css" tofile="${project.build.directory}/site/apidocs/stylesheet.css" overwrite="true" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<distributionManagement>
<site>
<id>dev.abiss.gr</id>
<url>scp://dev.abiss.gr/home2/m/mbatsis/dev_abiss_gr/md4j</url>
</site>
<repository>
<id>shell.sourceforge.net</id>
<url>scp://shell.sourceforge.net:/home/groups/m/md/md4j/htdocs/repository/releases</url>
</repository>
<snapshotRepository>
<id>dev.abiss.gr</id>
<url>scp://dev.abiss.gr/home2/m/mbatsis/dev_abiss_gr/m2repo/snapshots</url>
</snapshotRepository>
</distributionManagement>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.2</version>
<configuration>
<doclet>gr.spinellis.umlgraph.doclet.UmlGraphDoc</doclet>
<docletArtifact>
<groupId>gr.spinellis</groupId>
<artifactId>UmlGraph</artifactId>
<version>4.6</version>
</docletArtifact>
<additionalparam>
-inferrel -inferdep -quiet -hide java.* -collpackages java.util.* -qualify
-postfixpackage -nodefontsize 9
-nodefontpackagesize 7
-header '<img class="logo" src="../images/abiss/banner-logo-dev.gif" title="Abiss.gr" />'
-footer '© ${project.inceptionYear}-2007 ${project.organization.name}'
-link http://java.sun.com/j2se/1.4.2/docs/api/
</additionalparam>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jxr-maven-plugin</artifactId>
<configuration>
<linkJavadoc>true</linkJavadoc>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<configuration>
<targetjdk>1.4</targetjdk>
<!--rulesets>
<ruleset>/rulesets/basic.xml</ruleset>
<ruleset>/rulesets/controversial.xml</ruleset>
</rulesets>
<format>xml</format>
<linkXref>true</linkXref>
<sourceEncoding>utf-8</sourceEncoding>
<minimumTokens>100</minimumTokens-->
</configuration>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
<version>1.6.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.8</version>
</dependency>
<dependency>
<groupId>commons-configuration</groupId>
<artifactId>commons-configuration</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
<version>3.2.4.ga</version>
<exclusions>
<exclusion>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</project>