p2-site
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.eclipse.collections</groupId>
<artifactId>p2-site</artifactId>
<version>13.0.0</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">
<!--
~ Copyright (c) 2021 Zoltan Ujhelyi and Eclipse Collections project.
~ All rights reserved. This program and the accompanying materials
~ are made available under the terms of the Eclipse Public License v1.0
~ and Eclipse Distribution License v. 1.0 which accompany this distribution.
~ The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
~ and the Eclipse Distribution License is available at
~ http://www.eclipse.org/org/documents/edl-v10.php.
-->
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>eclipse-collections-parent</artifactId>
<groupId>org.eclipse.collections</groupId>
<version>13.0.0</version>
</parent>
<artifactId>p2-site</artifactId>
<packaging>p2-maven-repository</packaging>
<name>Eclipse Collections p2 update site</name>
<properties>
<!-- project defaults -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<tycho-version>4.0.13</tycho-version>
</properties>
<build>
<plugins>
<!-- configure default plug-ins -->
<!-- enable Tycho -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
<version>${tycho-version}</version>
<extensions>true</extensions>
</plugin>
<!-- See https://tycho.eclipseprojects.io/doc/latest/tycho-p2-repository-plugin/assemble-maven-repository-mojo.html -->
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-repository-plugin</artifactId>
<version>${tycho-version}</version>
<configuration>
<includeReactor>true</includeReactor>
<categoryName>Eclipse Collections</categoryName>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>maven-dependency-plugin</id>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<failOnWarning>true</failOnWarning>
<ignoredUnusedDeclaredDependencies>
<ignoredUnusedDeclaredDependency>
org.eclipse.collections:eclipse-collections-code-generator:jar
</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>
org.eclipse.collections:eclipse-collections-api:jar
</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>
org.eclipse.collections:eclipse-collections:jar
</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>
org.eclipse.collections:eclipse-collections-testutils:jar
</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>
org.eclipse.collections:eclipse-collections-forkjoin:jar
</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>
org.eclipse.collections:unit-tests:jar
</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>
org.eclipse.collections:serialization-tests:jar
</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>
org.eclipse.collections:jcstress-tests:jar
</ignoredUnusedDeclaredDependency>
<ignoredUnusedDeclaredDependency>
org.eclipse.collections:unit-tests-java8:jar
</ignoredUnusedDeclaredDependency>
</ignoredUnusedDeclaredDependencies>
</configuration>
<executions>
<execution>
<id>analyze</id>
<goals>
<goal>analyze-only</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<pluginRepositories>
<pluginRepository>
<id>cbi-releases</id>
<url>https://repo.eclipse.org/content/repositories/cbi-releases/</url>
</pluginRepository>
</pluginRepositories>
</project>