|
- <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>
- <parent>
- <groupId>org.eclipse.ee4j</groupId>
- <artifactId>project</artifactId>
- <version>1.0.6</version>
- <relativePath />
- </parent>
- <groupId>tmp.org.glassfish.corba</groupId>
- <artifactId>placeholder.glassfish-corba</artifactId>
- <version>4.2.4</version>
- <name>ORB Implementation</name>
- <packaging>pom</packaging>
- <description>A CORBA ORB for Glassfish</description>
- <url>https://projects.eclipse.org/proposals/eclipse-orb</url>
- <issueManagement>
- <system>github</system>
- <url>https://github.com/eclipse-ee4j/orb/issues</url>
- </issueManagement>
- <licenses>
- <license>
- <name>EDL 1.0</name>
- <url>https://www.eclipse.org/org/documents/edl-v10.php</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <mailingLists>
- <mailingList>
- <name>ORB mailing list</name>
- <post>orb-dev@eclipse.org</post>
- <subscribe>https://dev.eclipse.org/mailman/listinfo/orb-dev</subscribe>
- <unsubscribe>https://dev.eclipse.org/mailman/listinfo/orb-dev</unsubscribe>
- <archive>https://dev.eclipse.org/mhonarc/lists/orb-dev</archive>
- </mailingList>
- </mailingLists>
- <scm>
- <connection>scm:git:https://github.com/eclipse-ee4j/orb.git</connection>
- <developerConnection>scm:git:ssh://git@github.com/eclipse-ee4j/orb.git</developerConnection>
- <url>https://github.com/eclipse-ee4j/orb</url>
- <tag>HEAD</tag>
- </scm>
- <distributionManagement>
- <site>
- <id>github</id>
- <url>scm:git:https://github.com/eclipse-ee4j/orb.git</url>
- </site>
- </distributionManagement>
- <developers>
- <developer>
- <name>Russell Gold</name>
- <email>russell.gold@oracle.com</email>
- <id>russgold</id>
- </developer>
- <developer>
- <name>Harshad Vilekar</name>
- </developer>
- </developers>
- <modules>
- <module>idlj</module>
- <module>rmic</module>
- <module>omgapi</module>
- <module>csiv2-idl</module>
- <module>exception-annotation-processor</module>
- <module>orbmain</module>
- <module>internal-api</module>
- </modules>
- <properties>
- <copyright.exclude>make/copyright-information/copyright-exclude.txt</copyright.exclude>
- <copyright.ignoreyear>false</copyright.ignoreyear>
- <copyright.scmonly>true</copyright.scmonly>
- <copyright.template>make/copyright-information/copyright.txt</copyright.template>
- <copyright.update>false</copyright.update>
- <jdkVersion>1.8</jdkVersion>
- <maven.compiler.source>${jdkVersion}</maven.compiler.source>
- <maven.compiler.target>${jdkVersion}</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <sonar.dynamicAnalysis>false</sonar.dynamicAnalysis>
- <pfl-version>4.1.2</pfl-version>
- <gmbal-version>4.0.0</gmbal-version>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>3.1.0</version>
- <configuration>
- <archive>
- <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-site-plugin</artifactId>
- <version>3.3</version>
- <executions>
- <execution>
- <id>stage-for-scm-publish</id>
- <phase>post-site</phase>
- <goals>
- <goal>stage</goal>
- </goals>
- </execution>
- <execution>
- <id>default-deploy</id>
- <phase>none</phase>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-scm-publish-plugin</artifactId>
- <version>1.1</version>
- <configuration>
- <scmBranch>gh-pages</scmBranch>
- <pubScmUrl>scm:git:https://github.com/javaee/glassfish-corba.git</pubScmUrl>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.glassfish.copyright</groupId>
- <artifactId>glassfish-copyright-maven-plugin</artifactId>
- <configuration>
- <templateFile>${copyright.template}</templateFile>
- <excludeFile>${copyright.exclude}</excludeFile>
- <scmOnly>${copyright.scmonly}</scmOnly>
- <update>${copyright.update}</update>
- <ignoreYear>${copyright.ignoreyear}</ignoreYear>
- </configuration>
- </plugin>
- </plugins>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.20</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>3.1.0</version>
- </plugin>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <version>4.1.0</version>
- <extensions>true</extensions>
- <executions>
- <execution>
- <goals>
- <goal>manifest</goal>
- <goal>install</goal>
- <goal>deploy</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>idlj-maven-plugin</artifactId>
- <version>1.2.2</version>
- <executions>
- <execution>
- <goals>
- <goal>generate</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>${project.groupId}</groupId>
- <artifactId>idlj</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- <configuration>
- <sources>
- <source>
- <compatible>false</compatible>
- <defines>
- <define>
- <symbol>CORBA3</symbol>
- </define>
- </defines>
- <additionalArguments>
- <additionalArgument>-corba</additionalArgument>
- <additionalArgument>3.0</additionalArgument>
- </additionalArguments>
- </source>
- </sources>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>rmic-maven-plugin</artifactId>
- <version>1.3</version>
- <executions>
- <execution>
- <goals>
- <goal>test-rmic</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>org.glassfish.corba</groupId>
- <artifactId>rmic</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>1.6</version>
- <dependencies>
- <dependency>
- <groupId>ant</groupId>
- <artifactId>ant-junit</artifactId>
- <version>1.6.5</version>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.13.1</version>
- </dependency>
- </dependencies>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-project-info-reports-plugin</artifactId>
- <version>2.9</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-enforcer-plugin</artifactId>
- <version>3.0.0-M2</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-gpg-plugin</artifactId>
- <version>1.6</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>3.0.1</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>3.0.1</version>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.7.0</version>
- </plugin>
- <plugin>
- <groupId>org.jacoco</groupId>
- <artifactId>jacoco-maven-plugin</artifactId>
- <version>0.8.5</version>
- <executions>
- <execution>
- <id>coverage-initialize</id>
- <goals>
- <goal>prepare-agent</goal>
- </goals>
- </execution>
- <execution>
- <id>coverage-report</id>
- <phase>post-integration-test</phase>
- <goals>
- <goal>report</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.glassfish.copyright</groupId>
- <artifactId>glassfish-copyright-maven-plugin</artifactId>
- <version>2.3</version>
- </plugin>
- </plugins>
- </pluginManagement>
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-webdav-jackrabbit</artifactId>
- <version>2.4</version>
- </extension>
- </extensions>
- </build>
- <reporting>
- <plugins>
-
-
- </plugins>
- </reporting>
- <profiles>
- <profile>
- <id>disable-java8-doclint</id>
- <activation>
- <jdk>[1.8,)</jdk>
- </activation>
- <properties>
- <additionalparam>-Xdoclint:none</additionalparam>
- </properties>
- </profile>
- <profile>
- <id>install-legal-files</id>
- <activation>
- <file>
- <exists>src/main/java</exists>
- </file>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>com.coderplus.maven.plugins</groupId>
- <artifactId>copy-rename-maven-plugin</artifactId>
- <version>1.0.1</version>
- <executions>
- <execution>
- <id>copy-legal-files</id>
- <phase>generate-resources</phase>
- <goals>
- <goal>copy</goal>
- </goals>
- <configuration>
- <fileSets>
- <fileSet>
- <sourceFile>${project.basedir}/../LICENSE.md</sourceFile>
- <destinationFile>${project.build.outputDirectory}/META-INF/LICENSE</destinationFile>
- </fileSet>
- <fileSet>
- <sourceFile>${project.basedir}/../NOTICE.md</sourceFile>
- <destinationFile>${project.build.outputDirectory}/META-INF/NOTICE</destinationFile>
- </fileSet>
- </fileSets>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>legacy-functional-test</id>
- <activation>
- <jdk>(,1.8]</jdk>
- </activation>
- <modules>
- <module>functional-tests</module>
- </modules>
- </profile>
- </profiles>
- <dependencies>
- <dependency>
- <groupId>com.meterware.simplestub</groupId>
- <artifactId>simplestub</artifactId>
- <version>1.2.12</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.13.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.hamcrest</groupId>
- <artifactId>hamcrest-all</artifactId>
- <version>1.3</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.glassfish.corba</groupId>
- <artifactId>glassfish-corba</artifactId>
- <version>4.2.4</version>
- </dependency>
- </dependencies>
- </project>
|