iframework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>pro.redsoft.iframework</groupId> <artifactId>iframework</artifactId> <version>0.4.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <groupId>pro.redsoft.iframework</groupId> <artifactId>iframework</artifactId> <packaging>pom</packaging> <version>0.4.1</version> <name>iframework</name> <inceptionYear>2012</inceptionYear> <description>Extended model-view-presenter framework based on GWTP to simplify your next GWT project. </description> <url>http://redsoft.pro</url> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <organization> <name>RedSoft</name> <url>http://redsoft.pro</url> </organization> <developers> <developer> <id>neo.bsuir</id> <name>alex oreshkevich</name> <email>alex.oreshkevich@redsoft.pro</email> <organization>REDSOFT.PRO</organization> <organizationUrl>http://www.redsoft.pro</organizationUrl> <roles> <role>architect</role> <role>lead developer</role> </roles> <timezone>+3</timezone> </developer> </developers> <scm> <connection>scm:git:git@github.com:AlexOreshkevich/iFramework.git </connection> <developerConnection> scm:git:git@github.com:AlexOreshkevich/iFramework.git </developerConnection> <url>git@github.com:AlexOreshkevich/iFramework.git</url> </scm> <modules> <module>iframework-build-tools</module> <module>iframework-core</module> <module>iframework-jaxbx</module> <module>iframework-samples</module> </modules> <properties> <target.jdk>1.7</target.jdk> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8 </project.reporting.outputEncoding> <gwt.style>OBF</gwt.style> <!-- Maven --> <build-helper-maven-plugin.version>1.7 </build-helper-maven-plugin.version> <gwt-maven-plugin.version>2.6.1</gwt-maven-plugin.version> <lifecycle-mapping-plugin.version>1.0.0 </lifecycle-mapping-plugin.version> <maven-checkstyle-plugin.version>2.12.1 </maven-checkstyle-plugin.version> <maven-compiler-plugin.version>3.1</maven-compiler-plugin.version> <maven-deploy-plugin.version>2.8.1</maven-deploy-plugin.version> <maven-eclipse-plugin.version>2.8</maven-eclipse-plugin.version> <maven-gae-plugin.version>0.9.6</maven-gae-plugin.version> <maven-javadoc-plugin.version>2.9.1</maven-javadoc-plugin.version> <maven-processor-plugin.version>2.2.4</maven-processor-plugin.version> <maven-source-plugin.version>2.2.1</maven-source-plugin.version> <maven-surefire-plugin.version>2.17</maven-surefire-plugin.version> <maven-war-plugin.version>2.4</maven-war-plugin.version> <maven-failsafe-plugin.version>2.12</maven-failsafe-plugin.version> <maven-release-plugin.version>2.4.1</maven-release-plugin.version> <!-- Client --> <gwt.version>2.6.1</gwt.version> <gwtp.version>1.2.1</gwtp.version> <gin.version>2.1.2</gin.version> <gwtquery.version>1.4.2</gwtquery.version> <piriti.version>0.8</piriti.version> <totoe.version>0.4</totoe.version> <!-- Server --> <guice.version>3.0</guice.version> <guava.version>17.0</guava.version> <!-- testing --> <junit.version>4.11</junit.version> <jukito.version>1.4</jukito.version> </properties> <build> <pluginManagement> <plugins> <!-- Compilation --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${target.jdk}</source> <target>${target.jdk}</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${maven-deploy-plugin.version}</version> </plugin> <plugin> <groupId>org.bsc.maven</groupId> <artifactId>maven-processor-plugin</artifactId> <version>${maven-processor-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven-checkstyle-plugin.version}</version> <configuration> <configLocation>/checkstyle.xml</configLocation> <suppressionsLocation>/suppressions.xml </suppressionsLocation> <propertiesLocation>/checkstyle.properties </propertiesLocation> <propertyExpansion>basedir=${basedir} </propertyExpansion> <consoleOutput>false</consoleOutput> <failsOnError>false</failsOnError> <linkXRef>false</linkXRef> <includeTestSourceDirectory>true </includeTestSourceDirectory> </configuration> <dependencies> <dependency> <groupId>pro.redsoft.iframework</groupId> <artifactId>iframework-build-tools</artifactId> <version>${project.version}</version> </dependency> </dependencies> <executions> <execution> <id>validate</id> <phase>validate</phase> <goals> <goal>checkstyle</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <excludePackageNames>*.internal:pro.redsoft.iframework.shared.config.*:by.redsoft.jaxbx.test.config.*</excludePackageNames> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <goals>deploy</goals> <autoVersionSubmodules>true</autoVersionSubmodules> <useEditMode>true</useEditMode> <releaseProfiles>release</releaseProfiles> <useReleaseProfile>false</useReleaseProfile> </configuration> </plugin> </plugins> </pluginManagement> <!-- Plugins to be inherited by sub-projects. Note that definitions and configurations of the following plugins in a sub module, will override the top level parent pom's definition --> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>${target.jdk}</source> <target>${target.jdk}</target> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <!-- Skip GWTTests during JUnit tests --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <includes> <include>**/*Test.java</include> <include>**/*TestCase.java</include> </includes> <excludes> <exclude>**/*GwtTest.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>development</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <profile.name>development</profile.name> </properties> </profile> <profile> <id>release</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencyManagement> <dependencies> <!-- This dependency is required by maven-checkstyle-plugin. --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>iframework-build-tools</artifactId> <version>${project.version}</version> <scope>provided</scope> <optional>true</optional> </dependency> <!-- Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>provided</scope> </dependency> </dependencies> </dependencyManagement> <!-- Deployment --> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/ </url> </repository> </distributionManagement> </project>