mina-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wso2.org.apache.mina</groupId> <artifactId>mina-parent</artifactId> <version>1.1.7-wso2v4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. ~ ~ WSO2 Inc. licenses this file to you under the Apache 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.apache.org/licenses/LICENSE-2.0 ~ ~ 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/xsd/maven-4.0.0.xsd"> <parent> <groupId>org.wso2</groupId> <artifactId>wso2</artifactId> <version>1</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.wso2.org.apache.mina</groupId> <artifactId>mina-parent</artifactId> <packaging>pom</packaging> <version>1.1.7-wso2v4</version> <name>mina</name> <description> MINA (Multipurpose Infrastructure for Network Applications) is a network application framework which helps users develop high performance and highly scalable network applications easily. </description> <url>http://mina.apache.org/</url> <inceptionYear>2004</inceptionYear> <issueManagement> <system>jira</system> <url>http://issues.apache.org/jira/browse/DIRMINA</url> </issueManagement> <scm> <connection>scm:https://github.com/wso2/wso2-mina.git</connection> <developerConnection>scm:git:https://github.com/wso2/wso2-mina.git</developerConnection> <url>https://github.com/wso2/wso2-mina.git</url> <tag>v1.1.7-wso2v4</tag> </scm> <modules> <module>core</module> <module>filter-ssl</module> <module>filter-codec-netty</module> <module>filter-compression</module> <module>integration-spring</module> <module>integration-jmx</module> <module>orbit</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>easymock</groupId> <artifactId>easymock</artifactId> <version>${easymock.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.jcraft</groupId> <artifactId>jzlib</artifactId> <version>${jzlib.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>net.gleamynode</groupId> <artifactId>netty2</artifactId> <version>${netty2.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>easymock</groupId> <artifactId>easymockclassextension</artifactId> <version>${easymock.ext.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-net</groupId> <artifactId>commons-net</artifactId> <version>${commons.net.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ssh</artifactId> <version>2.1</version> </extension> </extensions> <plugins> <!-- compiler plugin configuration --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> <source>1.7</source> <target>1.7</target> <debug>true</debug> <optimize>true</optimize> </configuration> </plugin> <!-- surefire plugin configuration --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <preparationGoals>clean install</preparationGoals> <autoVersionSubmodules>true</autoVersionSubmodules> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.4.3</version> <configuration> <includes> <include>**/*TestCase.java</include> </includes> <excludes> <exclude>**/Abstract*</exclude> <!-- Timing issues with these tests due to VM bug for releasing file descriptors --> <exclude>**/DatagramBindTest.java</exclude> <exclude>**/VmPipeTrafficControlTest.java</exclude> <exclude>**/*RegressionTest*</exclude> </excludes> <reportFormat>brief</reportFormat> <useFile>false</useFile> <forkMode>once</forkMode> <argLine>-ea -Xmx512m</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <properties> <slf4j.version>1.4.3</slf4j.version> <easymock.version>1.2_Java1.3</easymock.version> <netty2.version>1.9.2</netty2.version> <jzlib.version>1.0.7</jzlib.version> <junit.version>4.7</junit.version> <easymock.ext.version>1.1</easymock.ext.version> <spring.version>2.0.6</spring.version> <commons.net.version>1.4.1</commons.net.version> </properties> <mailingLists> <mailingList> <name>Architecture</name> <subscribe>architecture-request@wso2.org</subscribe> <unsubscribe>architecture-request@wso2.org</unsubscribe> <post>architecture@wso2.org</post> <archive>http://wso2.markmail.org/search/?q=list%3Aorg.wso2.architecture </archive> </mailingList> </mailingLists> <reporting> <excludeDefaults>true</excludeDefaults> <outputDirectory>${project.build.directory}/site</outputDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.4</version> <configuration> <dependencyDetailsEnabled>false</dependencyDetailsEnabled> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> </configuration> <reportSets> <reportSet> <reports> <report>scm</report> <report>mailing-list</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <repositories> <repository> <id>wso2-nexus</id> <name>WSO2 internal Repository</name> <url>http://maven.wso2.org/nexus/content/groups/wso2-public/</url> <releases> <enabled>true</enabled> <updatePolicy>daily</updatePolicy> <checksumPolicy>ignore</checksumPolicy> </releases> </repository> <repository> <id>com.springsource.repository.bundles.release</id> <name>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</name> <url>http://repository.springsource.com/maven/bundles/release</url> </repository> <repository> <id>com.springsource.repository.bundles.external</id> <name>SpringSource Enterprise Bundle Repository - External Bundle Releases</name> <url>http://repository.springsource.com/maven/bundles/external</url> </repository> <repository> <id>jboss-maven-repository</id> <name>JBoss Maven Repository</name> <url>http://repository.jboss.org/nexus/content/groups/public/</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>repository.dev.java.net-maven2</id> <name>Java.net Repository for Maven</name> <url>http://download.java.net/maven/2/</url> <layout>default</layout> </pluginRepository> </pluginRepositories> </project>