che-plugin-github-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.che.plugin</groupId> <artifactId>che-plugin-github-server</artifactId> <version>7.0.0-rc-3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2012-2018 Red Hat, Inc. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 Contributors: Red Hat, Inc. - initial API and implementation --> <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> <parent> <artifactId>che-plugin-github-parent</artifactId> <groupId>org.eclipse.che.plugin</groupId> <version>7.0.0-rc-3.0</version> </parent> <artifactId>che-plugin-github-server</artifactId> <packaging>jar</packaging> <name>Che Plugin :: Github :: Server</name> <properties> <dto-generator-out-directory>${project.build.directory}/generated-sources/dto/</dto-generator-out-directory> </properties> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> </dependency> <dependency> <groupId>javax.ws.rs</groupId> <artifactId>javax.ws.rs-api</artifactId> </dependency> <dependency> <groupId>org.eclipse.che.core</groupId> <artifactId>che-core-api-core</artifactId> </dependency> <dependency> <groupId>org.eclipse.che.core</groupId> <artifactId>che-core-api-dto</artifactId> </dependency> <dependency> <groupId>org.eclipse.che.core</groupId> <artifactId>che-core-api-git</artifactId> </dependency> <dependency> <groupId>org.eclipse.che.core</groupId> <artifactId>che-core-api-project</artifactId> </dependency> <dependency> <groupId>org.eclipse.che.core</groupId> <artifactId>che-core-api-ssh-shared</artifactId> </dependency> <dependency> <groupId>org.eclipse.che.core</groupId> <artifactId>che-core-commons-annotations</artifactId> </dependency> <dependency> <groupId>org.eclipse.che.core</groupId> <artifactId>che-core-commons-inject</artifactId> </dependency> <dependency> <groupId>org.eclipse.che.core</groupId> <artifactId>che-core-commons-json</artifactId> </dependency> <dependency> <groupId>org.eclipse.che.plugin</groupId> <artifactId>che-plugin-github-shared</artifactId> </dependency> <dependency> <groupId>org.eclipse.che.plugin</groupId> <artifactId>che-plugin-ssh-key-server</artifactId> </dependency> <dependency> <groupId>org.kohsuke</groupId> <artifactId>github-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-resource</id> <phase>process-sources</phase> <goals> <goal>add-resource</goal> </goals> <configuration> <resources> <resource> <directory>${dto-generator-out-directory}/META-INF</directory> <targetPath>META-INF</targetPath> </resource> </resources> </configuration> </execution> <execution> <id>add-source</id> <phase>process-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${dto-generator-out-directory}</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>pre-compile</id> <phase>generate-sources</phase> <goals> <goal>compile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.eclipse.che.core</groupId> <artifactId>che-core-api-dto-maven-plugin</artifactId> <version>${project.version}</version> <executions> <execution> <id>generate-server-dto</id> <phase>process-sources</phase> <goals> <goal>generate</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>org.eclipse.che.plugin</groupId> <artifactId>che-plugin-github-shared</artifactId> <version>${project.version}</version> </dependency> </dependencies> <configuration> <dtoPackages> <package>org.eclipse.che.plugin.github.shared</package> </dtoPackages> <outputDirectory>${dto-generator-out-directory}</outputDirectory> <genClassName>org.eclipse.che.plugin.github.server.dto.DtoServerImpls</genClassName> <impl>server</impl> </configuration> </plugin> </plugins> </build> </project>