jdt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.sonarsource.java</groupId> <artifactId>jdt</artifactId> <version>7.30.1.34514</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <parent> <artifactId>java</artifactId> <groupId>org.sonarsource.java</groupId> <version>7.30.1.34514</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>jdt</artifactId> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <goals> <goal>shade</goal> </goals> <configuration> <createSourcesJar>true</createSourcesJar> <shadedArtifactAttached>true</shadedArtifactAttached> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/**</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <executions> <execution> <phase>generate-resources</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>jdt</artifactId> <classifier>shaded</classifier> <version>${project.version}</version> <outputDirectory>${project.build.directory}/classes</outputDirectory> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <groupId>org.eclipse.jdt</groupId> <artifactId>org.eclipse.jdt.core</artifactId> <version>3.33.0</version> <exclusions> <exclusion> <artifactId>org.eclipse.core.filesystem</artifactId> <groupId>org.eclipse.platform</groupId> </exclusion> <exclusion> <artifactId>org.eclipse.core.expressions</artifactId> <groupId>org.eclipse.platform</groupId> </exclusion> <exclusion> <artifactId>org.eclipse.equinox.registry</artifactId> <groupId>org.eclipse.platform</groupId> </exclusion> <exclusion> <artifactId>org.eclipse.equinox.app</artifactId> <groupId>org.eclipse.platform</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.eclipse.platform</groupId> <artifactId>org.eclipse.core.resources</artifactId> <version>3.18.200</version> </dependency> <dependency> <groupId>org.eclipse.platform</groupId> <artifactId>org.eclipse.core.runtime</artifactId> <version>3.26.100</version> </dependency> <dependency> <groupId>org.eclipse.platform</groupId> <artifactId>org.eclipse.core.jobs</artifactId> <version>3.13.300</version> </dependency> <dependency> <groupId>org.eclipse.platform</groupId> <artifactId>org.eclipse.core.contenttype</artifactId> <version>3.8.200</version> </dependency> <dependency> <groupId>org.eclipse.platform</groupId> <artifactId>org.eclipse.text</artifactId> <version>3.12.300</version> <exclusions> <exclusion> <artifactId>org.eclipse.core.commands</artifactId> <groupId>org.eclipse.platform</groupId> </exclusion> </exclusions> </dependency> </dependencies> </dependencyManagement> </project>