summaryrefslogtreecommitdiffstats
path: root/chain
diff options
context:
space:
mode:
authorHÃ¥kon Hallingstad <hakon@oath.com>2019-01-04 16:01:14 +0100
committerGitHub <noreply@github.com>2019-01-04 16:01:14 +0100
commitcd470d8ac8a58c943748f028a37d864507628e99 (patch)
tree7d7abbfc040f37b614a8d1c980d7f632597c51f6 /chain
parent8ea7795c01e0830bb9b218cb60759ffc01551f56 (diff)
Revert "Enable ABI checking on modules with public APIs"
Diffstat (limited to 'chain')
-rw-r--r--chain/abi-spec.json136
-rwxr-xr-xchain/pom.xml4
2 files changed, 0 insertions, 140 deletions
diff --git a/chain/abi-spec.json b/chain/abi-spec.json
deleted file mode 100644
index 300f98d82fd..00000000000
--- a/chain/abi-spec.json
+++ /dev/null
@@ -1,136 +0,0 @@
-{
- "com.yahoo.component.chain.Chain": {
- "superClass": "java.lang.Object",
- "interfaces": [],
- "attributes": [
- "public"
- ],
- "methods": [
- "public void <init>(java.lang.String, java.util.List)",
- "public void <init>(com.yahoo.component.ComponentId, java.util.List)",
- "public void <init>(java.util.List)",
- "public varargs void <init>(com.yahoo.component.chain.ChainedComponent[])",
- "public varargs void <init>(java.lang.String, com.yahoo.component.chain.ChainedComponent[])",
- "public varargs void <init>(com.yahoo.component.ComponentId, com.yahoo.component.chain.ChainedComponent[])",
- "public void <init>(com.yahoo.component.ComponentId, java.util.Collection, java.util.Collection)",
- "public com.yahoo.component.ComponentId getId()",
- "public java.util.List components()",
- "public java.lang.String toString()",
- "public boolean equals(java.lang.Object)",
- "public int hashCode()"
- ],
- "fields": []
- },
- "com.yahoo.component.chain.ChainedComponent": {
- "superClass": "com.yahoo.component.AbstractComponent",
- "interfaces": [],
- "attributes": [
- "public",
- "abstract"
- ],
- "methods": [
- "public void <init>(com.yahoo.component.ComponentId)",
- "protected void <init>()",
- "public void initDependencies(com.yahoo.component.chain.dependencies.Dependencies)",
- "public com.yahoo.component.chain.dependencies.Dependencies getDependencies()",
- "protected com.yahoo.component.chain.dependencies.Dependencies getDefaultAnnotatedDependencies()",
- "protected com.yahoo.component.chain.dependencies.Dependencies getAnnotatedDependencies(java.lang.Class, java.lang.Class, java.lang.Class)"
- ],
- "fields": []
- },
- "com.yahoo.component.chain.ChainsConfigurer": {
- "superClass": "java.lang.Object",
- "interfaces": [],
- "attributes": [
- "public"
- ],
- "methods": [
- "public void <init>()",
- "public static void prepareChainRegistry(com.yahoo.component.provider.ComponentRegistry, com.yahoo.component.chain.model.ChainsModel, com.yahoo.component.provider.ComponentRegistry)"
- ],
- "fields": []
- },
- "com.yahoo.component.chain.Phase": {
- "superClass": "java.lang.Object",
- "interfaces": [],
- "attributes": [
- "public"
- ],
- "methods": [
- "public void <init>(java.lang.String, java.util.Set, java.util.Set)",
- "public void <init>(java.lang.String, com.yahoo.component.chain.dependencies.Dependencies)",
- "public java.lang.String getName()",
- "public java.util.Set before()",
- "public java.util.Set after()",
- "public com.yahoo.component.chain.Phase union(com.yahoo.component.chain.Phase)"
- ],
- "fields": [
- "public final com.yahoo.component.chain.dependencies.Dependencies dependencies"
- ]
- },
- "com.yahoo.component.chain.dependencies.After": {
- "superClass": "java.lang.Object",
- "interfaces": [
- "java.lang.annotation.Annotation"
- ],
- "attributes": [
- "public",
- "interface",
- "abstract",
- "annotation"
- ],
- "methods": [
- "public abstract java.lang.String[] value()"
- ],
- "fields": []
- },
- "com.yahoo.component.chain.dependencies.Before": {
- "superClass": "java.lang.Object",
- "interfaces": [
- "java.lang.annotation.Annotation"
- ],
- "attributes": [
- "public",
- "interface",
- "abstract",
- "annotation"
- ],
- "methods": [
- "public abstract java.lang.String[] value()"
- ],
- "fields": []
- },
- "com.yahoo.component.chain.dependencies.Dependencies": {
- "superClass": "java.lang.Object",
- "interfaces": [],
- "attributes": [
- "public"
- ],
- "methods": [
- "public void <init>(java.util.Collection, java.util.Collection, java.util.Collection)",
- "public static com.yahoo.component.chain.dependencies.Dependencies emptyDependencies()",
- "public com.yahoo.component.chain.dependencies.Dependencies union(com.yahoo.component.chain.dependencies.Dependencies)",
- "public java.lang.String toString()",
- "public java.util.Set provides()",
- "public java.util.Set before()",
- "public java.util.Set after()"
- ],
- "fields": []
- },
- "com.yahoo.component.chain.dependencies.Provides": {
- "superClass": "java.lang.Object",
- "interfaces": [
- "java.lang.annotation.Annotation"
- ],
- "attributes": [
- "public",
- "interface",
- "abstract",
- "annotation"
- ],
- "methods": [
- "public abstract java.lang.String[] value()"
- ],
- "fields": []
- }
-} \ No newline at end of file
diff --git a/chain/pom.xml b/chain/pom.xml
index cf82376b857..01a64a93609 100755
--- a/chain/pom.xml
+++ b/chain/pom.xml
@@ -104,10 +104,6 @@
</execution>
</executions>
</plugin>
- <plugin>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>abi-check-plugin</artifactId>
- </plugin>
</plugins>
</build>
</project>