128 lines
4.5 KiB
Plaintext
128 lines
4.5 KiB
Plaintext
![]() |
<!--
|
||
|
~ JBoss, Home of Professional Open Source.
|
||
|
~ Copyright 2014 Red Hat, Inc., and individual contributors
|
||
|
~ as indicated by the @author tags.
|
||
|
~
|
||
|
~ Licensed 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">
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<name>JBoss Marshalling Parent</name>
|
||
|
<description>JBoss Marshalling Parent POM</description>
|
||
|
<groupId>org.jboss.marshalling</groupId>
|
||
|
<artifactId>jboss-marshalling-parent</artifactId>
|
||
|
<packaging>pom</packaging>
|
||
|
<version>2.0.11.Final</version>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>org.jboss</groupId>
|
||
|
<artifactId>jboss-parent</artifactId>
|
||
|
<version>34</version>
|
||
|
</parent>
|
||
|
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>Apache License 2.0</name>
|
||
|
<url>http://repository.jboss.org/licenses/apache-2.0.txt</url>
|
||
|
<distribution>repo</distribution>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||
|
<jdk.min.version>9</jdk.min.version>
|
||
|
</properties>
|
||
|
|
||
|
<modules>
|
||
|
<module>api</module>
|
||
|
<module>river</module>
|
||
|
<module>serial</module>
|
||
|
<module>tests</module>
|
||
|
<module>osgi</module>
|
||
|
</modules>
|
||
|
|
||
|
<build>
|
||
|
<pluginManagement>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.7.0-jboss-1</version>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>1.4</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.jboss.maven.plugins</groupId>
|
||
|
<artifactId>maven-injection-plugin</artifactId>
|
||
|
<version>1.0.2</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>compile</phase>
|
||
|
<goals>
|
||
|
<goal>bytecode</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</pluginManagement>
|
||
|
</build>
|
||
|
|
||
|
<dependencyManagement>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.jboss.marshalling</groupId>
|
||
|
<artifactId>jboss-marshalling</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jboss.marshalling</groupId>
|
||
|
<artifactId>jboss-marshalling-river</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jboss.marshalling</groupId>
|
||
|
<artifactId>jboss-marshalling-serial</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jboss.modules</groupId>
|
||
|
<artifactId>jboss-modules</artifactId>
|
||
|
<version>1.6.0.Final</version>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.testng</groupId>
|
||
|
<artifactId>testng</artifactId>
|
||
|
<version>6.8.8</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</dependencyManagement>
|
||
|
|
||
|
</project>
|