mvc-prototype
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sf.mvc-prototype</groupId>
<artifactId>mvc-prototype</artifactId>
<version>0.2.7</version>
</dependency><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>
<properties>
<jdk.version>1.5</jdk.version>
</properties>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<groupId>net.sf.mvc-prototype</groupId>
<artifactId>mvc-prototype</artifactId>
<name>MVC-Prototype</name>
<version>0.2.7</version>
<description>MVC-Prototype is a lightwight prototype framework for the MVC-Pattern. It helps to easily create a clean application that follows the MVC pattern. MVC-Prototype makes excessive use of Java Generics to bring maximum flexibility.</description>
<url>http://mvc-prototype.sourceforge.net</url>
<developers>
<developer>
<id>kerner</id>
<name>Alexander Kerner</name>
<email>alex.kerner.24@googlemail.com</email>
<roles>
<role>Project Manager</role>
<role>Architect</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
<url>git://mvc-prototype.git.sourceforge.net/gitroot/mvc-prototype/mvc-prototype
</url>
<connection>scm:git:git://mvc-prototype.git.sourceforge.net/gitroot/mvc-prototype/mvc-prototype</connection>
<developerConnection>scm:git:ssh://akerner@mvc-prototype.git.sourceforge.net/gitroot/mvc-prototype/mvc-prototype</developerConnection>
</scm>
<distributionManagement>
<site>
<id>sourceforge-mvc-prototype</id>
<url>sftp://frs.sourceforge.net:/home/groups/m/mv/mvc-prototype/htdocs</url>
</site>
</distributionManagement>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>doc</id>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>install</goal>
</goals>
<configuration>
<createChecksum>true</createChecksum>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>install</goal>
</goals>
<configuration>
<createChecksum>true</createChecksum>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>