File: pom.scala

package info (click to toggle)
polyglot-maven 0.8~tobrien%2Bgit20120905-10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 2,936 kB
  • sloc: java: 19,134; xml: 1,604; ruby: 542; sh: 86; makefile: 16
file content (343 lines) | stat: -rw-r--r-- 11,289 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
project { m =>
  m.artifactId = "pmaven"  
  m.build { b =>  
    b.defaultGoal = "install"    
    b.pluginManagement { p =>    
      p.plugin { p =>      
        p.artifactId = "maven-site-plugin"        
        p.extensions = false        
        p.groupId = "org.apache.maven.plugins"        
        p.inherited = true        
        p.version = "2.1"        
      }      
    }    
    b.plugin { p =>    
      p.artifactId = "maven-surefire-plugin"      
      p.configuration =      
      <configuration>      
        <redirectTestOutputToFile>true</redirectTestOutputToFile>        
        <forkMode>once</forkMode>        
        <argLine>-ea</argLine>        
        <failIfNoTests>false</failIfNoTests>        
        <workingDirectory>{"${project.build.directory}"}</workingDirectory>        
        <excludes>        
          <exclude>**/Abstract*.java</exclude>          
          <exclude>**/Test*.java</exclude>          
        </excludes>        
        <includes>        
          <include>**/*Test.java</include>          
        </includes>        
      </configuration>      
      p.extensions = false      
      p.groupId = "org.apache.maven.plugins"      
      p.inherited = true      
      p.version = "2.5"      
    }    
    b.plugin { p =>    
      p.artifactId = "maven-compiler-plugin"      
      p.configuration =      
      <configuration>      
        <source>1.5</source>        
        <target>1.5</target>        
      </configuration>      
      p.extensions = false      
      p.groupId = "org.apache.maven.plugins"      
      p.inherited = true      
      p.version = "2.0.2"      
    }    
    b.plugin { p =>    
      p.artifactId = "gmaven-plugin"      
      p.configuration =      
      <configuration>      
        <providerSelection>1.7</providerSelection>        
      </configuration>      
      p.execution { p =>      
        p.goals += "generateStubs"        
        p.goals += "compile"        
        p.goals += "generateTestStubs"        
        p.goals += "testCompile"        
        p.id = "default"        
        p.inherited = true        
        p.priority = 0        
      }      
      p.extensions = false      
      p.groupId = "org.codehaus.gmaven"      
      p.inherited = true      
      p.version = "1.2"      
    }    
    b.plugin { p =>    
      p.artifactId = "plexus-component-metadata"      
      p.execution { p =>      
        p.goals += "generate-metadata"        
        p.goals += "generate-test-metadata"        
        p.id = "default"        
        p.inherited = true        
        p.priority = 0        
      }      
      p.extensions = false      
      p.groupId = "org.codehaus.plexus"      
      p.inherited = true      
      p.version = "1.5.1"      
    }    
    b.plugin { p =>    
      p.artifactId = "maven-release-plugin"      
      p.configuration =      
      <configuration>      
        <useReleaseProfile>false</useReleaseProfile>        
        <goals>deploy</goals>        
        <arguments>-B -Prelease</arguments>        
        <autoVersionSubmodules>true</autoVersionSubmodules>        
      </configuration>      
      p.extensions = false      
      p.groupId = "org.apache.maven.plugins"      
      p.inherited = true      
      p.version = "2.0-beta-9"      
    }    
    b.plugin { p =>    
      p.artifactId = "maven-scm-plugin"      
      p.extensions = false      
      p.groupId = "org.apache.maven.plugins"      
      p.inherited = true      
      p.version = "1.2"      
    }    
  }  
  m.ciManagement { c =>  
    c.system = "Hudson"    
    c.url = "https://grid.sonatype.org/ci/job/Polyglot-Maven"    
  }  
  m.dependency { d =>  
    d.artifactId = "junit"    
    d.groupId = "junit"    
    d.optional = false    
    d.scope = "test"    
    d._type = "jar"    
    d.version = "4.7"    
  }  
  m.dependency { d =>  
    d.artifactId = "groovy"    
    d.groupId = "org.codehaus.groovy"    
    d.optional = false    
    d.scope = "test"    
    d._type = "jar"    
  }  
  m.dependencyManagement { d =>  
    d.dependency { d =>    
      d.artifactId = "apache-maven"      
      d.classifier = "bin"      
      d.groupId = "org.apache.maven"      
      d.optional = false      
      d._type = "zip"      
      d.version = "${mavenVersion}"      
    }    
    d.dependency { d =>    
      d.artifactId = "maven-model-builder"      
      d.groupId = "org.apache.maven"      
      d.optional = false      
      d._type = "jar"      
      d.version = "${mavenVersion}"      
    }    
    d.dependency { d =>    
      d.artifactId = "maven-embedder"      
      d.groupId = "org.apache.maven"      
      d.optional = false      
      d._type = "jar"      
      d.version = "${mavenVersion}"      
    }    
    d.dependency { d =>    
      d.artifactId = "maven-plugin-api"      
      d.groupId = "org.apache.maven"      
      d.optional = false      
      d._type = "jar"      
      d.version = "${mavenVersion}"      
    }    
    d.dependency { d =>    
      d.artifactId = "groovy"      
      d.exclusion { e =>      
        e.artifactId = "jline"        
        e.groupId = "jline"        
      }      
      d.exclusion { e =>      
        e.artifactId = "junit"        
        e.groupId = "junit"        
      }      
      d.exclusion { e =>      
        e.artifactId = "ant"        
        e.groupId = "org.apache.ant"        
      }      
      d.exclusion { e =>      
        e.artifactId = "ant-launcher"        
        e.groupId = "org.apache.ant"        
      }      
      d.groupId = "org.codehaus.groovy"      
      d.optional = false      
      d._type = "jar"      
      d.version = "1.7.0"      
    }    
    d.dependency { d =>    
      d.artifactId = "guice"      
      d.groupId = "com.google.inject"      
      d.optional = false      
      d._type = "jar"      
      d.version = "2.0"      
    }    
    d.dependency { d =>    
      d.artifactId = "mvnsh-maven"      
      d.groupId = "org.sonatype.maven.shell"      
      d.optional = false      
      d._type = "jar"      
      d.version = "0.10"      
    }    
    d.dependency { d =>    
      d.artifactId = "gshell-core"      
      d.classifier = "tests"      
      d.groupId = "org.sonatype.gshell"      
      d.optional = false      
      d._type = "jar"      
      d.version = "2.5"      
    }    
    d.dependency { d =>    
      d.artifactId = "pmaven-common"      
      d.groupId = "org.sonatype.pmaven"      
      d.optional = false      
      d._type = "jar"      
      d.version = "0.8-SNAPSHOT"      
    }    
    d.dependency { d =>    
      d.artifactId = "pmaven-cli"      
      d.groupId = "org.sonatype.pmaven"      
      d.optional = false      
      d._type = "jar"      
      d.version = "0.8-SNAPSHOT"      
    }    
    d.dependency { d =>    
      d.artifactId = "pmaven-maven-plugin"      
      d.groupId = "org.sonatype.pmaven"      
      d.optional = false      
      d._type = "jar"      
      d.version = "0.8-SNAPSHOT"      
    }    
    d.dependency { d =>    
      d.artifactId = "pmaven-groovy"      
      d.groupId = "org.sonatype.pmaven"      
      d.optional = false      
      d._type = "jar"      
      d.version = "0.8-SNAPSHOT"      
    }    
    d.dependency { d =>    
      d.artifactId = "pmaven-yaml"      
      d.groupId = "org.sonatype.pmaven"      
      d.optional = false      
      d._type = "jar"      
      d.version = "0.8-SNAPSHOT"      
    }    
    d.dependency { d =>    
      d.artifactId = "pmaven-jruby"      
      d.groupId = "org.sonatype.pmaven"      
      d.optional = false      
      d._type = "jar"      
      d.version = "0.8-SNAPSHOT"      
    }    
    d.dependency { d =>    
      d.artifactId = "pmaven-commands"      
      d.groupId = "org.sonatype.pmaven"      
      d.optional = false      
      d._type = "jar"      
      d.version = "0.8-SNAPSHOT"      
    }    
    d.dependency { d =>    
      d.artifactId = "pmaven-clojure"      
      d.groupId = "org.sonatype.pmaven"      
      d.optional = false      
      d._type = "jar"      
      d.version = "0.8-SNAPSHOT"      
    }    
    d.dependency { d =>    
      d.artifactId = "pmaven-scala"      
      d.groupId = "org.sonatype.pmaven"      
      d.optional = false      
      d._type = "jar"      
      d.version = "0.8-SNAPSHOT"      
    }    
  }  
  m.developer { d =>  
    d.email = "jason@planet57.com"    
    d.id = "jdillon"    
    d.name = "Jason Dillon"    
    d.roles += "Build Master"    
    d.roles += "Developer"    
  }  
  m.distributionManagement { d =>  
    d.site { s =>    
      s.id = "${forgeSiteId}"      
      s.url = "${forgeSiteUrl}"      
    }    
  }  
  m.groupId = "org.sonatype.pmaven"  
  m.issueManagement { i =>  
    i.system = "JIRA"    
    i.url = "https://issues.sonatype.org/browse/PMAVEN"    
  }  
  m.license { l =>  
    l.distribution = "repo"    
    l.name = "The Apache Software License, Version 2.0"    
    l.url = "http://www.apache.org/licenses/LICENSE-2.0.txt"    
  }  
  m.mailingList { m =>  
    m.name = "Development"    
    m.post = "polyglot@maven.org"    
    m.subscribe = "polyglot-subscribe@maven.org"    
  }  
  m.modelEncoding = "UTF-8"  
  m.modelVersion = "4.0.0"  
  m.modules += "pmaven-common"  
  m.modules += "pmaven-maven-plugin"  
  m.modules += "pmaven-groovy"  
  m.modules += "pmaven-yaml"  
  m.modules += "pmaven-clojure"  
  m.modules += "pmaven-jruby"  
  m.modules += "pmaven-scala"  
  m.modules += "pmaven-cli"  
  m.modules += "pmaven-commands"  
  m.name = "Polyglot Maven"  
  m.packaging = "pom"  
  m.parent { p =>  
    p.artifactId = "forge-parent"    
    p.groupId = "org.sonatype.forge"    
    p.relativePath = "../pom.xml"    
    p.version = "5"    
  }  
  m.properties += ("forgeSiteId" -> "forge-sites")  
  m.properties += ("mavenVersion" -> "3.0-alpha-7")  
  m.properties += ("project.build.sourceEncoding" -> "UTF-8")  
  m.properties += ("forgeSiteUrl" -> "dav:http://repository.sonatype.org/content/sites/forge-sites/${project.artifactId}/${project.version}")  
  m.reporting { r =>  
    r.excludeDefaults = false    
    r.plugin { r =>    
      r.artifactId = "maven-javadoc-plugin"      
      r.configuration =      
      <configuration>      
        <configuration>        
          <source>1.5</source>          
          <encoding>{"${project.build.sourceEncoding}"}</encoding>          
        </configuration>        
      </configuration>      
      r.groupId = "org.apache.maven.plugins"      
      r.inherited = true      
      r.version = "2.6.1"      
    }    
    r.plugin { r =>    
      r.artifactId = "cobertura-maven-plugin"      
      r.groupId = "org.codehaus.mojo"      
      r.inherited = false      
      r.version = "2.3"      
    }    
  }  
  m.scm { s =>  
    s.connection = "scm:git:git://github.com/sonatype/polyglot-maven.git"    
    s.developerConnection = "scm:git:ssh://git@github.com/sonatype/polyglot-maven.git"    
    s.tag = "HEAD"    
    s.url = "http://github.com/sonatype/polyglot-maven"    
  }  
  m.url = "http://polyglot.sonatype.org/"  
  m.version = "0.8-SNAPSHOT"  
}