aboutsummaryrefslogtreecommitdiffstats
path: root/service-monitor/pom.xml
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorn.christian@seime.no>2017-10-20 12:04:50 +0200
committerGitHub <noreply@github.com>2017-10-20 12:04:50 +0200
commit32bd8b6e1a9f1fd27e0e35f4cabdfd8c48af48ca (patch)
tree137440c1bd8dbd0e4033adbaa9b299f98bc36b62 /service-monitor/pom.xml
parentdb16a398cebe5d68b1c58eae4d92799d72a6ff2c (diff)
parent1854338baf9b18bc0324c2dd0c2c2c400fe7724d (diff)
Merge pull request #3828 from vespa-engine/hakonhall/remove-scala-servicemonitor
Remove Scala ServiceMonitor
Diffstat (limited to 'service-monitor/pom.xml')
-rw-r--r--service-monitor/pom.xml48
1 files changed, 0 insertions, 48 deletions
diff --git a/service-monitor/pom.xml b/service-monitor/pom.xml
index 34d245c596b..c63bdf35574 100644
--- a/service-monitor/pom.xml
+++ b/service-monitor/pom.xml
@@ -16,20 +16,6 @@
<dependencies>
<dependency>
- <groupId>org.scala-lang</groupId>
- <artifactId>scala-library</artifactId>
- </dependency>
- <dependency>
- <groupId>io.reactivex</groupId>
- <artifactId>rxjava</artifactId>
- <version>1.0.7</version>
- </dependency>
- <dependency>
- <groupId>io.reactivex</groupId>
- <artifactId>rxscala_${scala.major-version}</artifactId>
- <version>0.23.1</version>
- </dependency>
- <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>config</artifactId>
<version>${project.version}</version>
@@ -72,17 +58,6 @@
<scope>provided</scope>
</dependency>
<dependency>
- <groupId>org.json4s</groupId>
- <artifactId>json4s-native_${scala.major-version}</artifactId>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <groupId>org.scala-lang</groupId>
- <artifactId>scalap</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
<groupId>com.yahoo.vespa</groupId>
<artifactId>annotations</artifactId>
<version>${project.version}</version>
@@ -112,32 +87,9 @@
<build>
<plugins>
<plugin>
- <groupId>net.alchim31.maven</groupId>
- <artifactId>scala-maven-plugin</artifactId>
- <executions>
- <execution>
- <goals>
- <goal>add-source</goal>
- <goal>compile</goal>
- <goal>testCompile</goal>
- </goals>
- </execution>
- <execution>
- <id>compile-scala-classes-for-use-in-java-classes</id>
- <phase>process-resources</phase>
- <goals>
- <goal>compile</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
<groupId>com.yahoo.vespa</groupId>
<artifactId>bundle-plugin</artifactId>
<extensions>true</extensions>
- <configuration>
- <Import-Package>sun.misc</Import-Package> <!-- needed by rx.internal.util.unsafe.UnsafeAccess -->
- </configuration>
</plugin>
<plugin>