1
2
3
4
5 package com.atlassian.maven.plugins.jarjar;
6
7 import java.lang.*;
8 import java.io.*;
9 import java.net.*;
10 import java.util.*;
11 import groovy.lang.*;
12 import groovy.util.*;
13 import com.tonicsystems.jarjar.JarJarTask;
14 import org.apache.maven.project.MavenProject;
15 import org.codehaus.groovy.maven.mojo.GroovyMojo;
16
17
18
19
20
21
22
23
24 public class JarJarMojo
25 extends GroovyMojo
26 {
27
28
29
30
31
32
33
34 private MavenProject project = null;
35 public MavenProject getProject() {
36 throw new InternalError("Stubbed method");
37 }
38 public void setProject(MavenProject value) {
39 throw new InternalError("Stubbed method");
40 }
41
42
43
44
45
46
47
48
49
50 private java.lang.String projectPackage = null;
51 public java.lang.String getProjectPackage() {
52 throw new InternalError("Stubbed method");
53 }
54 public void setProjectPackage(java.lang.String value) {
55 throw new InternalError("Stubbed method");
56 }
57
58
59
60
61
62
63
64
65
66
67
68 private List rules = null;
69 public List getRules() {
70 throw new InternalError("Stubbed method");
71 }
72 public void setRules(List value) {
73 throw new InternalError("Stubbed method");
74 }
75
76
77
78
79
80
81
82
83
84 private List zaps = null;
85 public List getZaps() {
86 throw new InternalError("Stubbed method");
87 }
88 public void setZaps(List value) {
89 throw new InternalError("Stubbed method");
90 }
91
92
93
94
95
96
97
98
99
100 private List zips = null;
101 public List getZips() {
102 throw new InternalError("Stubbed method");
103 }
104 public void setZips(List value) {
105 throw new InternalError("Stubbed method");
106 }
107
108 private java.lang.Object filter = null;
109
110 public void execute() {
111 throw new InternalError("Stubbed method");
112 }
113
114 public groovy.lang.MetaClass getMetaClass() {
115 throw new InternalError("Stubbed method");
116 }
117
118 public void setMetaClass(groovy.lang.MetaClass metaClass) {
119 throw new InternalError("Stubbed method");
120 }
121
122 public java.lang.Object invokeMethod(java.lang.String name, java.lang.Object args) {
123 throw new InternalError("Stubbed method");
124 }
125
126 public java.lang.Object getProperty(java.lang.String name) {
127 throw new InternalError("Stubbed method");
128 }
129
130 public void setProperty(java.lang.String name, java.lang.Object value) {
131 throw new InternalError("Stubbed method");
132 }
133 }