che-plugin-java-debugger-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.che.plugin</groupId> <artifactId>che-plugin-java-debugger-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-java-debugger-parent</artifactId> <groupId>org.eclipse.che.plugin</groupId> <version>7.0.0-rc-3.0</version> </parent> <artifactId>che-plugin-java-debugger-server</artifactId> <packaging>jar</packaging> <name>Che Plugin :: Java :: Java Debugger Server</name> <properties> <docker.showLogs>true</docker.showLogs> </properties> <dependencies> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</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-debug</artifactId> </dependency> <dependency> <groupId>org.eclipse.che.core</groupId> <artifactId>che-core-api-debug-shared</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-commons-inject</artifactId> </dependency> <dependency> <groupId>org.eclipse.che.lib</groupId> <artifactId>antlr-java5-grammar</artifactId> </dependency> <dependency> <groupId>org.eclipse.che.plugin</groupId> <artifactId>che-plugin-java-server</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.inject.extensions</groupId> <artifactId>guice-assistedinject</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.che.core</groupId> <artifactId>che-core-api-languageserver</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.che.core</groupId> <artifactId>che-core-api-model</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.che.core</groupId> <artifactId>che-core-api-project</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.che.core</groupId> <artifactId>che-core-api-workspace-shared</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.eclipse.che.plugin</groupId> <artifactId>che-plugin-java-ext-lang-server</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-testng</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/**</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <excludes> <exclude>**/*.tokens</exclude> <exclude>**/*.g</exclude> <exclude>**/*.txt</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <!-- these dependencies are needed only for test sources but can't be marked with test scope because then it will exclude transitive compile dependency --> <execution> <id>analyze</id> <configuration> <ignoredDependencies> <ignoreDependency>org.eclipse.che.core:che-core-api-core</ignoreDependency> </ignoredDependencies> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>integration</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> <configuration> <systemPropertyVariables> <debug.port>${debug.port}</debug.port> </systemPropertyVariables> <suiteXmlFiles> <suiteXmlFile>${project.build.testOutputDirectory}/JavaDebuggerTestsSuite.xml</suiteXmlFile> </suiteXmlFiles> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>copy-sources</id> <phase>process-test-resources</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <chmod file="${project.build.testOutputDirectory}/docker/entrypoint.sh" perm="+x" /> </target> </configuration> </execution> </executions> </plugin> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <executions> <execution> <id>build</id> <phase>process-test-resources</phase> <goals> <goal>build</goal> </goals> </execution> <execution> <id>start</id> <phase>pre-integration-test</phase> <goals> <goal>stop</goal> <goal>start</goal> </goals> </execution> <execution> <id>stop</id> <phase>post-integration-test</phase> <goals> <goal>stop</goal> </goals> </execution> </executions> <configuration> <images> <image> <alias>java</alias> <name>java-8-jdk:debugger</name> <build> <from>java:8-jdk</from> <assembly> <descriptor>${project.build.testOutputDirectory}/docker/assembly.xml</descriptor> </assembly> <workdir>maven</workdir> <entryPoint> <exec>./entrypoint.sh</exec> </entryPoint> </build> <run> <ports> <port>debug.port:8001</port> </ports> <wait> <log>Listening for transport dt_socket at address: 8001</log> <time>20000</time> </wait> </run> </image> </images> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>java8-tools</id> <activation> <jdk>(,1.9)</jdk> </activation> <dependencies> <dependency> <groupId>sun.jdt</groupId> <artifactId>tools</artifactId> <scope>system</scope> <systemPath>${java.home}/../lib/tools.jar</systemPath> </dependency> </dependencies> </profile> </profiles> </project>