diff options
Diffstat (limited to 'core')
| -rw-r--r-- | core/build.gradle | 2 | ||||
| -rw-r--r-- | core/pom.xml | 90 |
2 files changed, 2 insertions, 90 deletions
diff --git a/core/build.gradle b/core/build.gradle index 765f1de3..e477081a 100644 --- a/core/build.gradle +++ b/core/build.gradle @@ -7,4 +7,6 @@ dependencies { testCompile project(':instrumentation-core-impl'), libraries.grpc_context + + signature "org.codehaus.mojo.signature:java16:+@signature" } diff --git a/core/pom.xml b/core/pom.xml deleted file mode 100644 index 3a506273..00000000 --- a/core/pom.xml +++ /dev/null @@ -1,90 +0,0 @@ -<?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"> - - <modelVersion>4.0.0</modelVersion> - - <artifactId>census-core</artifactId> - - <name>Instrumentation Java Core</name> - <url>https://github.com/google/instrumentation-java</url> - - <parent> - <groupId>com.google.census</groupId> - <artifactId>census-parent</artifactId> - <version>0.1.0-SNAPSHOT</version> - </parent> - - <dependencies> - <dependency> - <groupId>com.google.io</groupId> - <artifactId>shared</artifactId> - <version>${project.version}</version> - <scope>test</scope> - </dependency> - </dependencies> - - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-compiler-plugin</artifactId> - <executions> - <execution> - <id>default-testCompile</id> - <phase>test-compile</phase> - <goals> - <goal>testCompile</goal> - </goals> - <configuration> - <!-- - Don't build the stats tests, because they currently create a circular - dependency between the 'core' and 'core_impl' directories. - --> - <testExcludes> - <exclude>**/stats/*.java</exclude> - </testExcludes> - </configuration> - </execution> - </executions> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-jar-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-source-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - </plugin> - </plugins> - </build> - - <profiles> - <profile> - <id>default</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> - </profile> - <profile> - <id>dev</id> - <build> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-checkstyle-plugin</artifactId> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> - </plugin> - </plugins> - </build> - </profile> - </profiles> -</project> |
