horatio 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +24 -0
- data/.rubocop.yml +169 -0
- data/.ruby-version +1 -0
- data/.travis.yml +25 -0
- data/Gemfile +10 -0
- data/Guardfile +10 -0
- data/LICENSE.txt +22 -0
- data/README.md +73 -0
- data/Rakefile +13 -0
- data/bin/horatio +33 -0
- data/horatio.gemspec +30 -0
- data/lib/horatio.rb +64 -0
- data/lib/horatio/detector.rb +14 -0
- data/lib/horatio/detector/docker.rb +39 -0
- data/lib/horatio/detector/dynamic.rb +33 -0
- data/lib/horatio/detector/io_handler.rb +44 -0
- data/lib/horatio/detector/json_reader.rb +15 -0
- data/lib/horatio/detector/json_writer.rb +26 -0
- data/lib/horatio/detector/maven.rb +48 -0
- data/lib/horatio/detector/node_package.rb +30 -0
- data/lib/horatio/detector/null_writer.rb +11 -0
- data/lib/horatio/detector/rubygem.rb +32 -0
- data/lib/horatio/detector/validator.rb +20 -0
- data/lib/horatio/helper/vcs.rb +12 -0
- data/lib/horatio/releaser.rb +45 -0
- data/lib/horatio/vcs.rb +11 -0
- data/lib/horatio/vcs/git.rb +41 -0
- data/lib/horatio/vcs/subversion.rb +23 -0
- data/lib/horatio/version.rb +3 -0
- data/spec/fixtures/dynamic +10 -0
- data/spec/fixtures/package.json +105 -0
- data/spec/fixtures/pom.xml +822 -0
- data/spec/fixtures/test.gemspec +32 -0
- data/spec/horatio/detector/docker_spec.rb +30 -0
- data/spec/horatio/detector/dynamic_spec.rb +19 -0
- data/spec/horatio/detector/maven_spec.rb +27 -0
- data/spec/horatio/detector/node_package_spec.rb +19 -0
- data/spec/horatio/detector/rubygem_spec.rb +28 -0
- data/spec/horatio/releaser_spec.rb +25 -0
- data/spec/horatio/vcs/git_spec.rb +22 -0
- data/spec/horatio/vcs/subversion_spec.rb +15 -0
- data/spec/spec_helper.rb +12 -0
- data/spec/support/fixture_copy.rb +28 -0
- data/spec/support/reporters.rb +3 -0
- metadata +232 -0
@@ -0,0 +1,105 @@
|
|
1
|
+
{
|
2
|
+
"name": "less",
|
3
|
+
"version": "1.7.0",
|
4
|
+
"description": "Leaner CSS",
|
5
|
+
"homepage": "http://lesscss.org",
|
6
|
+
"author": {
|
7
|
+
"name": "Alexis Sellier",
|
8
|
+
"email": "self@cloudhead.net"
|
9
|
+
},
|
10
|
+
"contributors": [
|
11
|
+
{
|
12
|
+
"name": "The Core Less Team"
|
13
|
+
}
|
14
|
+
],
|
15
|
+
"bugs": {
|
16
|
+
"url": "https://github.com/less/less.js/issues"
|
17
|
+
},
|
18
|
+
"repository": {
|
19
|
+
"type": "git",
|
20
|
+
"url": "https://github.com/less/less.js.git"
|
21
|
+
},
|
22
|
+
"licenses": [
|
23
|
+
{
|
24
|
+
"type": "Apache v2",
|
25
|
+
"url": "https://github.com/less/less.js/blob/master/LICENSE"
|
26
|
+
}
|
27
|
+
],
|
28
|
+
"bin": {
|
29
|
+
"lessc": "./bin/lessc"
|
30
|
+
},
|
31
|
+
"main": "./lib/less/index",
|
32
|
+
"directories": {
|
33
|
+
"test": "./test"
|
34
|
+
},
|
35
|
+
"jam": {
|
36
|
+
"main": "./dist/less-1.6.3.js"
|
37
|
+
},
|
38
|
+
"engines": {
|
39
|
+
"node": ">=0.8.0"
|
40
|
+
},
|
41
|
+
"scripts": {
|
42
|
+
"test": "grunt test"
|
43
|
+
},
|
44
|
+
"optionalDependencies": {
|
45
|
+
"mime": "1.2.x",
|
46
|
+
"request": ">=2.33.0",
|
47
|
+
"mkdirp": "~0.3.5",
|
48
|
+
"clean-css": "2.1.x",
|
49
|
+
"source-map": "0.1.x"
|
50
|
+
},
|
51
|
+
"devDependencies": {
|
52
|
+
"diff": "~1.0",
|
53
|
+
"grunt": "~0.4.2",
|
54
|
+
"grunt-contrib-clean": "~0.5.0",
|
55
|
+
"grunt-contrib-concat": "~0.3.0",
|
56
|
+
"grunt-contrib-connect": "~0.6.0",
|
57
|
+
"grunt-contrib-jasmine": "~0.5.2",
|
58
|
+
"grunt-contrib-jshint": "~0.8.0",
|
59
|
+
"grunt-contrib-uglify": "~0.3.2",
|
60
|
+
"grunt-shell": "~0.6.4",
|
61
|
+
"http-server": "~0.6.1",
|
62
|
+
"matchdep": "~0.3.0",
|
63
|
+
"time-grunt": "~0.2.9"
|
64
|
+
},
|
65
|
+
"keywords": [
|
66
|
+
"compile less",
|
67
|
+
"css nesting",
|
68
|
+
"css variable",
|
69
|
+
"css",
|
70
|
+
"gradients css",
|
71
|
+
"gradients css3",
|
72
|
+
"less compiler",
|
73
|
+
"less css",
|
74
|
+
"less mixins",
|
75
|
+
"less",
|
76
|
+
"less.js",
|
77
|
+
"lesscss",
|
78
|
+
"mixins",
|
79
|
+
"nested css",
|
80
|
+
"parser",
|
81
|
+
"preprocessor",
|
82
|
+
"bootstrap css",
|
83
|
+
"bootstrap less",
|
84
|
+
"style",
|
85
|
+
"styles",
|
86
|
+
"stylesheet",
|
87
|
+
"variables in css",
|
88
|
+
"css less"
|
89
|
+
],
|
90
|
+
"readme": "[](https://travis-ci.org/less/less.js)\n# [Less.js v1.6.3](http://lesscss.org)\n\n> The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org).\n\nThis is the JavaScript, and now official, stable version of Less.\n\n\n## Getting Started\n\nOptions for adding Less.js to your project:\n\n* Install with [NPM](https://npmjs.org/): `npm install less`\n* [Download the latest release][download]\n* Clone the repo: `git clone git://github.com/less/less.js.git`\n\n## More information\n\nFor general information on the language, configuration options or usage visit [lesscss.org](http://lesscss.org).\n\nHere are other resources for using Less.js:\n\n* [stackoverflow.com][so] is a great place to get answers about Less.\n* [Less.js Issues][issues] for reporting bugs\n\n\n## Contributing\nPlease read [CONTRIBUTING.md](./CONTRIBUTING.md). Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).\n\n### Reporting Issues\n\nBefore opening any issue, please search for existing issues and read the [Issue Guidelines](https://github.com/necolas/issue-guidelines), written by [Nicolas Gallagher](https://github.com/necolas/). After that if you find a bug or would like to make feature request, [please open a new issue][issues].\n\nPlease report documentation issues in [the documentation project](https://github.com/less/less-docs).\n\n### Development\n\nRead [Developing Less](http://lesscss.org/usage/#developing-less).\n\n## Release History\nSee the [changelog](CHANGELOG.md)\n\n## [License](LICENSE)\n\nCopyright (c) 2009-2014 [Alexis Sellier](http://cloudhead.io/) & The Core Less Team\nLicensed under the [Apache License](LICENSE).\n\n\n[so]: http://stackoverflow.com/questions/tagged/twitter-bootstrap+less \"StackOverflow.com\"\n[issues]: https://github.com/less/less.js/issues \"GitHub Issues for Less.js\"\n[download]: https://github.com/less/less.js/zipball/master \"Download Less.js\"\n",
|
91
|
+
"readmeFilename": "README.md",
|
92
|
+
"dependencies": {
|
93
|
+
"mime": "1.2.x",
|
94
|
+
"request": ">=2.33.0",
|
95
|
+
"mkdirp": "~0.3.5",
|
96
|
+
"clean-css": "2.1.x",
|
97
|
+
"source-map": "0.1.x"
|
98
|
+
},
|
99
|
+
"_id": "less@1.7.0",
|
100
|
+
"dist": {
|
101
|
+
"shasum": "2ddda6f486251fa9039e0f035e62f31bc1f61dfc"
|
102
|
+
},
|
103
|
+
"_from": "less@",
|
104
|
+
"_resolved": "https://registry.npmjs.org/less/-/less-1.7.0.tgz"
|
105
|
+
}
|
@@ -0,0 +1,822 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<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/xsd/maven-4.0.0.xsd">
|
3
|
+
<modelVersion>4.0.0</modelVersion>
|
4
|
+
<parent>
|
5
|
+
<groupId>com.megacorp.maven</groupId>
|
6
|
+
<artifactId>corporate-pom</artifactId>
|
7
|
+
<version>8</version>
|
8
|
+
</parent>
|
9
|
+
<groupId>com.megacorp.online.bps.mobile.services</groupId>
|
10
|
+
<artifactId>test-maven-project</artifactId>
|
11
|
+
<version>1403.0.0.2-SNAPSHOT</version>
|
12
|
+
<packaging>pom</packaging>
|
13
|
+
<modules>
|
14
|
+
<module>server</module>
|
15
|
+
<module>mock</module>
|
16
|
+
<module>client</module>
|
17
|
+
<module>war</module>
|
18
|
+
<module>config</module>
|
19
|
+
<module>docker</module>
|
20
|
+
</modules>
|
21
|
+
|
22
|
+
<properties>
|
23
|
+
<parentPath>${basedir}</parentPath>
|
24
|
+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
25
|
+
|
26
|
+
<!-- Third party dependencies -->
|
27
|
+
<org.apache.cxf.version>2.7.5</org.apache.cxf.version>
|
28
|
+
<org.springframework.version>3.2.3.RELEASE</org.springframework.version>
|
29
|
+
|
30
|
+
<!-- Bigpond Framework dependencies -->
|
31
|
+
<bigpond.core.version>1.0.63</bigpond.core.version>
|
32
|
+
<bigpond.diagnostics.version>1.0.2</bigpond.diagnostics.version>
|
33
|
+
<bigpond.logging.version>1.0.2</bigpond.logging.version>
|
34
|
+
<bigpond.services.core.version>1.0.5</bigpond.services.core.version>
|
35
|
+
<bigpond.services.framework.proxy.runtime.version>0.121.0.3</bigpond.services.framework.proxy.runtime.version>
|
36
|
+
|
37
|
+
<!-- Bigpond common library dependencies -->
|
38
|
+
<com.megacorp.online.common.crypto.version>1.0.2</com.megacorp.online.common.crypto.version>
|
39
|
+
|
40
|
+
<!-- Other silo dependencies -->
|
41
|
+
<tcom.client.version>1403.0.38</tcom.client.version>
|
42
|
+
<onlineshop.common.client.version>1.1.109</onlineshop.common.client.version>
|
43
|
+
<shopboxservice.client.version>2.0.34</shopboxservice.client.version>
|
44
|
+
<megacorp.common.marketing.version>1.0.26</megacorp.common.marketing.version>
|
45
|
+
|
46
|
+
<!-- These properties do not actually do anything, it is just here to satisfy the enforcer plugin -->
|
47
|
+
<assembly.type>webapp-multiple</assembly.type>
|
48
|
+
<appserver.basedir>data/pa</appserver.basedir>
|
49
|
+
<appserver.container>mobileservices</appserver.container>
|
50
|
+
<install.user>prodapps</install.user>
|
51
|
+
<install.group>prodapps</install.group>
|
52
|
+
<clover.version>3.1.6</clover.version>
|
53
|
+
</properties>
|
54
|
+
|
55
|
+
<scm>
|
56
|
+
<connection>scm:svn:https://sourcecontrol.ae.sda.corp.megacorp.com/AE_Services_BPS-B/Mobile/services/branches/TOP</connection>
|
57
|
+
<developerConnection>svn:svn:https://sourcecontrol.ae.sda.corp.megacorp.com/AE_Services_BPS-B/Mobile/services/branches/TOP</developerConnection>
|
58
|
+
<url>https://sourcecontrol.ae.sda.corp.megacorp.com/AE_Services_BPS-B/Mobile/services/branches/TOP</url>
|
59
|
+
</scm>
|
60
|
+
|
61
|
+
<dependencies>
|
62
|
+
<!-- Build dependencies -->
|
63
|
+
<dependency>
|
64
|
+
<groupId>ant-contrib</groupId>
|
65
|
+
<artifactId>ant-contrib</artifactId>
|
66
|
+
<version>1.0b2</version>
|
67
|
+
<scope>provided</scope>
|
68
|
+
</dependency>
|
69
|
+
<dependency>
|
70
|
+
<groupId>asm</groupId>
|
71
|
+
<artifactId>asm</artifactId>
|
72
|
+
<version>3.1</version>
|
73
|
+
<scope>provided</scope>
|
74
|
+
</dependency>
|
75
|
+
<dependency>
|
76
|
+
<groupId>asm</groupId>
|
77
|
+
<artifactId>asm-analysis</artifactId>
|
78
|
+
<version>3.1</version>
|
79
|
+
<scope>provided</scope>
|
80
|
+
</dependency>
|
81
|
+
<dependency>
|
82
|
+
<groupId>asm</groupId>
|
83
|
+
<artifactId>asm-commons</artifactId>
|
84
|
+
<version>3.1</version>
|
85
|
+
<scope>provided</scope>
|
86
|
+
</dependency>
|
87
|
+
<dependency>
|
88
|
+
<groupId>asm</groupId>
|
89
|
+
<artifactId>asm-tree</artifactId>
|
90
|
+
<version>3.1</version>
|
91
|
+
<scope>provided</scope>
|
92
|
+
</dependency>
|
93
|
+
<dependency>
|
94
|
+
<groupId>asm</groupId>
|
95
|
+
<artifactId>asm-util</artifactId>
|
96
|
+
<version>3.1</version>
|
97
|
+
<scope>provided</scope>
|
98
|
+
</dependency>
|
99
|
+
<dependency>
|
100
|
+
<groupId>asm</groupId>
|
101
|
+
<artifactId>asm-xml</artifactId>
|
102
|
+
<version>3.1</version>
|
103
|
+
<scope>provided</scope>
|
104
|
+
</dependency>
|
105
|
+
<dependency>
|
106
|
+
<groupId>com.google.code.findbugs</groupId>
|
107
|
+
<artifactId>findbugs</artifactId>
|
108
|
+
<version>2.0.1</version>
|
109
|
+
<scope>provided</scope>
|
110
|
+
</dependency>
|
111
|
+
<dependency>
|
112
|
+
<groupId>com.google.code.findbugs</groupId>
|
113
|
+
<artifactId>findbugs-ant</artifactId>
|
114
|
+
<version>2.0.1</version>
|
115
|
+
<scope>provided</scope>
|
116
|
+
</dependency>
|
117
|
+
<dependency>
|
118
|
+
<groupId>com.google.code.findbugs</groupId>
|
119
|
+
<artifactId>jFormatString</artifactId>
|
120
|
+
<version>2.0.1</version>
|
121
|
+
<scope>provided</scope>
|
122
|
+
</dependency>
|
123
|
+
<dependency>
|
124
|
+
<groupId>org.apache.bcel</groupId>
|
125
|
+
<artifactId>bcel</artifactId>
|
126
|
+
<version>5.2</version>
|
127
|
+
<scope>provided</scope>
|
128
|
+
</dependency>
|
129
|
+
<dependency>
|
130
|
+
<groupId>commons-cli</groupId>
|
131
|
+
<artifactId>commons-cli</artifactId>
|
132
|
+
<version>1.2</version>
|
133
|
+
<scope>provided</scope>
|
134
|
+
</dependency>
|
135
|
+
<dependency>
|
136
|
+
<groupId>dom4j</groupId>
|
137
|
+
<artifactId>dom4j</artifactId>
|
138
|
+
<version>1.6.1</version>
|
139
|
+
<scope>provided</scope>
|
140
|
+
<exclusions>
|
141
|
+
<exclusion>
|
142
|
+
<groupId>xml-apis</groupId>
|
143
|
+
<artifactId>xml-apis</artifactId>
|
144
|
+
</exclusion>
|
145
|
+
</exclusions>
|
146
|
+
</dependency>
|
147
|
+
<dependency>
|
148
|
+
<groupId>com.sun.xml.bind</groupId>
|
149
|
+
<artifactId>jaxb-xjc</artifactId>
|
150
|
+
<version>2.0.1</version>
|
151
|
+
<scope>provided</scope>
|
152
|
+
</dependency>
|
153
|
+
<dependency>
|
154
|
+
<groupId>jaxen</groupId>
|
155
|
+
<artifactId>jaxen</artifactId>
|
156
|
+
<version>1.1.1</version>
|
157
|
+
<scope>provided</scope>
|
158
|
+
<exclusions>
|
159
|
+
<exclusion>
|
160
|
+
<groupId>xml-apis</groupId>
|
161
|
+
<artifactId>xml-apis</artifactId>
|
162
|
+
</exclusion>
|
163
|
+
</exclusions>
|
164
|
+
</dependency>
|
165
|
+
|
166
|
+
<!-- Package dependencies -->
|
167
|
+
<dependency>
|
168
|
+
<groupId>org.owasp.antisamy</groupId>
|
169
|
+
<artifactId>antisamy</artifactId>
|
170
|
+
<version>1.5.2</version>
|
171
|
+
<exclusions>
|
172
|
+
<exclusion>
|
173
|
+
<groupId>org.apache.xmlgraphics</groupId>
|
174
|
+
<artifactId>batik-css</artifactId>
|
175
|
+
</exclusion>
|
176
|
+
</exclusions>
|
177
|
+
</dependency>
|
178
|
+
<dependency>
|
179
|
+
<groupId>aopalliance</groupId>
|
180
|
+
<artifactId>aopalliance</artifactId>
|
181
|
+
<version>1.0</version>
|
182
|
+
</dependency>
|
183
|
+
<dependency>
|
184
|
+
<groupId>org.aspectj</groupId>
|
185
|
+
<artifactId>aspectjweaver</artifactId>
|
186
|
+
<version>1.6.0</version>
|
187
|
+
</dependency>
|
188
|
+
<dependency>
|
189
|
+
<groupId>batik</groupId>
|
190
|
+
<artifactId>batik-css</artifactId>
|
191
|
+
<version>1.6-1</version>
|
192
|
+
<exclusions>
|
193
|
+
<exclusion>
|
194
|
+
<groupId>batik</groupId>
|
195
|
+
<artifactId>batik-util</artifactId>
|
196
|
+
</exclusion>
|
197
|
+
<exclusion>
|
198
|
+
<groupId>batik</groupId>
|
199
|
+
<artifactId>batik-gui-util</artifactId>
|
200
|
+
</exclusion>
|
201
|
+
</exclusions>
|
202
|
+
</dependency>
|
203
|
+
<dependency>
|
204
|
+
<groupId>batik</groupId>
|
205
|
+
<artifactId>batik-ext</artifactId>
|
206
|
+
<version>1.6-1</version>
|
207
|
+
<exclusions>
|
208
|
+
<exclusion>
|
209
|
+
<groupId>xml-apis</groupId>
|
210
|
+
<artifactId>xmlParserAPIs</artifactId>
|
211
|
+
</exclusion>
|
212
|
+
</exclusions>
|
213
|
+
</dependency>
|
214
|
+
<dependency>
|
215
|
+
<groupId>com.megacorp.online.bps.core</groupId>
|
216
|
+
<artifactId>bigpond-core</artifactId>
|
217
|
+
<version>${bigpond.core.version}</version>
|
218
|
+
<!-- Sl4j bundled with core (1.6.6) is not logging anything in LogContext-->
|
219
|
+
<exclusions>
|
220
|
+
<exclusion>
|
221
|
+
<groupId>org.slf4j</groupId>
|
222
|
+
<artifactId>log4j-over-slf4j</artifactId>
|
223
|
+
</exclusion>
|
224
|
+
<exclusion>
|
225
|
+
<groupId>org.slf4j</groupId>
|
226
|
+
<artifactId>slf4j-jdk14</artifactId>
|
227
|
+
</exclusion>
|
228
|
+
</exclusions>
|
229
|
+
</dependency>
|
230
|
+
<dependency>
|
231
|
+
<groupId>com.megacorp.online.bps.core</groupId>
|
232
|
+
<artifactId>bigpond-diagnostics</artifactId>
|
233
|
+
<version>${bigpond.diagnostics.version}</version>
|
234
|
+
</dependency>
|
235
|
+
<dependency>
|
236
|
+
<groupId>com.megacorp.online.bps.core</groupId>
|
237
|
+
<artifactId>bigpond-logging</artifactId>
|
238
|
+
<version>${bigpond.logging.version}</version>
|
239
|
+
</dependency>
|
240
|
+
<dependency>
|
241
|
+
<groupId>com.megacorp.online.bps.core</groupId>
|
242
|
+
<artifactId>bigpond-services-core</artifactId>
|
243
|
+
<version>${bigpond.services.core.version}</version>
|
244
|
+
</dependency>
|
245
|
+
<dependency>
|
246
|
+
<groupId>com.megacorp.online.bps.core</groupId>
|
247
|
+
<artifactId>bigpond-services-framework-proxy-runtime</artifactId>
|
248
|
+
<version>${bigpond.services.framework.proxy.runtime.version}</version>
|
249
|
+
</dependency>
|
250
|
+
<dependency>
|
251
|
+
<groupId>com.megacorp.online.common</groupId>
|
252
|
+
<artifactId>megacorp-common-crypto</artifactId>
|
253
|
+
<version>${com.megacorp.online.common.crypto.version}</version>
|
254
|
+
</dependency>
|
255
|
+
<dependency>
|
256
|
+
<groupId>com.megacorp.online.bps.tcom</groupId>
|
257
|
+
<artifactId>tcom-services-client</artifactId>
|
258
|
+
<version>${tcom.client.version}</version>
|
259
|
+
</dependency>
|
260
|
+
<dependency>
|
261
|
+
<groupId>org.codehaus.castor</groupId>
|
262
|
+
<artifactId>castor</artifactId>
|
263
|
+
<version>1.2</version>
|
264
|
+
</dependency>
|
265
|
+
<dependency>
|
266
|
+
<groupId>commons-codec</groupId>
|
267
|
+
<artifactId>commons-codec</artifactId>
|
268
|
+
<version>1.6</version>
|
269
|
+
</dependency>
|
270
|
+
<dependency>
|
271
|
+
<groupId>commons-collections</groupId>
|
272
|
+
<artifactId>commons-collections</artifactId>
|
273
|
+
<version>3.2.1</version>
|
274
|
+
</dependency>
|
275
|
+
<dependency>
|
276
|
+
<groupId>commons-httpclient</groupId>
|
277
|
+
<artifactId>commons-httpclient</artifactId>
|
278
|
+
<version>3.1</version>
|
279
|
+
</dependency>
|
280
|
+
<dependency>
|
281
|
+
<groupId>org.apache.commons</groupId>
|
282
|
+
<artifactId>commons-httpclient-contrib-ssl</artifactId>
|
283
|
+
<version>3.1</version>
|
284
|
+
</dependency>
|
285
|
+
<dependency>
|
286
|
+
<groupId>commons-io</groupId>
|
287
|
+
<artifactId>commons-io</artifactId>
|
288
|
+
<version>2.3</version>
|
289
|
+
</dependency>
|
290
|
+
<dependency>
|
291
|
+
<groupId>commons-lang</groupId>
|
292
|
+
<artifactId>commons-lang</artifactId>
|
293
|
+
<version>2.4</version>
|
294
|
+
</dependency>
|
295
|
+
<dependency>
|
296
|
+
<groupId>commons-logging</groupId>
|
297
|
+
<artifactId>commons-logging</artifactId>
|
298
|
+
<version>1.1.1</version>
|
299
|
+
</dependency>
|
300
|
+
<dependency>
|
301
|
+
<groupId>commons-pool</groupId>
|
302
|
+
<artifactId>commons-pool</artifactId>
|
303
|
+
<version>1.4</version>
|
304
|
+
</dependency>
|
305
|
+
<dependency>
|
306
|
+
<groupId>org.apache.cxf</groupId>
|
307
|
+
<artifactId>cxf-bundle</artifactId>
|
308
|
+
<version>${org.apache.cxf.version}</version>
|
309
|
+
<exclusions>
|
310
|
+
<exclusion>
|
311
|
+
<groupId>org.apache.velocity</groupId>
|
312
|
+
<artifactId>velocity</artifactId>
|
313
|
+
</exclusion>
|
314
|
+
<exclusion>
|
315
|
+
<groupId>javax.xml.soap</groupId>
|
316
|
+
<artifactId>saaj-api</artifactId>
|
317
|
+
</exclusion>
|
318
|
+
<!-- Causes issues with java mail -->
|
319
|
+
<exclusion>
|
320
|
+
<groupId>org.apache.geronimo.specs</groupId>
|
321
|
+
<artifactId>geronimo-javamail_1.4_spec</artifactId>
|
322
|
+
</exclusion>
|
323
|
+
<exclusion>
|
324
|
+
<groupId>xml-resolver</groupId>
|
325
|
+
<artifactId>xml-resolver</artifactId>
|
326
|
+
</exclusion>
|
327
|
+
<exclusion>
|
328
|
+
<groupId>org.springframework</groupId>
|
329
|
+
<artifactId>spring-web</artifactId>
|
330
|
+
</exclusion>
|
331
|
+
<exclusion>
|
332
|
+
<groupId>org.springframework</groupId>
|
333
|
+
<artifactId>spring-beans</artifactId>
|
334
|
+
</exclusion>
|
335
|
+
<exclusion>
|
336
|
+
<groupId>org.springframework</groupId>
|
337
|
+
<artifactId>spring-core</artifactId>
|
338
|
+
</exclusion>
|
339
|
+
<exclusion>
|
340
|
+
<groupId>org.springframework</groupId>
|
341
|
+
<artifactId>spring-asm</artifactId>
|
342
|
+
</exclusion>
|
343
|
+
<exclusion>
|
344
|
+
<groupId>org.springframework</groupId>
|
345
|
+
<artifactId>spring-context</artifactId>
|
346
|
+
</exclusion>
|
347
|
+
<exclusion>
|
348
|
+
<groupId>org.springframework</groupId>
|
349
|
+
<artifactId>spring-aop</artifactId>
|
350
|
+
</exclusion>
|
351
|
+
<exclusion>
|
352
|
+
<groupId>org.springframework</groupId>
|
353
|
+
<artifactId>spring-expression</artifactId>
|
354
|
+
</exclusion>
|
355
|
+
<exclusion>
|
356
|
+
<groupId>com.sun.xml.messaging.saaj</groupId>
|
357
|
+
<artifactId>saaj-impl</artifactId>
|
358
|
+
</exclusion>
|
359
|
+
<exclusion>
|
360
|
+
<groupId>org.antlr</groupId>
|
361
|
+
<artifactId>antlr</artifactId>
|
362
|
+
</exclusion>
|
363
|
+
<exclusion>
|
364
|
+
<groupId>org.antlr</groupId>
|
365
|
+
<artifactId>antlr-runtime</artifactId>
|
366
|
+
</exclusion>
|
367
|
+
<exclusion>
|
368
|
+
<groupId>org.antlr</groupId>
|
369
|
+
<artifactId>stringtemplate</artifactId>
|
370
|
+
</exclusion>
|
371
|
+
<exclusion>
|
372
|
+
<groupId>antlr</groupId>
|
373
|
+
<artifactId>antlr</artifactId>
|
374
|
+
</exclusion>
|
375
|
+
<exclusion>
|
376
|
+
<groupId>org.apache.xmlbeans</groupId>
|
377
|
+
<artifactId>xmlbeans</artifactId>
|
378
|
+
</exclusion>
|
379
|
+
<exclusion>
|
380
|
+
<groupId>org.eclipse.jetty</groupId>
|
381
|
+
<artifactId>jetty-server</artifactId>
|
382
|
+
</exclusion>
|
383
|
+
<exclusion>
|
384
|
+
<groupId>org.eclipse.jetty</groupId>
|
385
|
+
<artifactId>jetty-continuation</artifactId>
|
386
|
+
</exclusion>
|
387
|
+
<exclusion>
|
388
|
+
<groupId>org.eclipse.jetty</groupId>
|
389
|
+
<artifactId>jetty-http</artifactId>
|
390
|
+
</exclusion>
|
391
|
+
<exclusion>
|
392
|
+
<groupId>org.eclipse.jetty</groupId>
|
393
|
+
<artifactId>jetty-io</artifactId>
|
394
|
+
</exclusion>
|
395
|
+
<exclusion>
|
396
|
+
<groupId>org.eclipse.jetty</groupId>
|
397
|
+
<artifactId>jetty-security</artifactId>
|
398
|
+
</exclusion>
|
399
|
+
<exclusion>
|
400
|
+
<groupId>org.eclipse.jetty</groupId>
|
401
|
+
<artifactId>jetty-util</artifactId>
|
402
|
+
</exclusion>
|
403
|
+
<exclusion>
|
404
|
+
<groupId>org.apache.geronimo.specs</groupId>
|
405
|
+
<artifactId>geronimo-jms_1.1_spec</artifactId>
|
406
|
+
</exclusion>
|
407
|
+
<exclusion>
|
408
|
+
<groupId>org.springframework</groupId>
|
409
|
+
<artifactId>spring-jms</artifactId>
|
410
|
+
</exclusion>
|
411
|
+
<exclusion>
|
412
|
+
<groupId>org.springframework</groupId>
|
413
|
+
<artifactId>spring-tx</artifactId>
|
414
|
+
</exclusion>
|
415
|
+
<exclusion>
|
416
|
+
<groupId>org.codehaus.jra</groupId>
|
417
|
+
<artifactId>jra</artifactId>
|
418
|
+
</exclusion>
|
419
|
+
<exclusion>
|
420
|
+
<groupId>rhino</groupId>
|
421
|
+
<artifactId>js</artifactId>
|
422
|
+
</exclusion>
|
423
|
+
<exclusion>
|
424
|
+
<groupId>org.apache.santuario</groupId>
|
425
|
+
<artifactId>xmlsec</artifactId>
|
426
|
+
</exclusion>
|
427
|
+
<exclusion>
|
428
|
+
<groupId>org.bouncycastle</groupId>
|
429
|
+
<artifactId>bcprov-jdk15</artifactId>
|
430
|
+
</exclusion>
|
431
|
+
<exclusion>
|
432
|
+
<groupId>org.slf4j</groupId>
|
433
|
+
<artifactId>slf4j-api</artifactId>
|
434
|
+
</exclusion>
|
435
|
+
</exclusions>
|
436
|
+
</dependency>
|
437
|
+
<dependency>
|
438
|
+
<groupId>org.apache.cxf</groupId>
|
439
|
+
<artifactId>cxf-rt-bindings-soap</artifactId>
|
440
|
+
<version>${org.apache.cxf.version}</version>
|
441
|
+
<exclusions>
|
442
|
+
<exclusion>
|
443
|
+
<groupId>org.apache.cxf</groupId>
|
444
|
+
<artifactId>cxf-api</artifactId>
|
445
|
+
</exclusion>
|
446
|
+
<exclusion>
|
447
|
+
<groupId>org.apache.cxf</groupId>
|
448
|
+
<artifactId>cxf-tools-common</artifactId>
|
449
|
+
</exclusion>
|
450
|
+
<exclusion>
|
451
|
+
<groupId>org.apache.cxf</groupId>
|
452
|
+
<artifactId>cxf-rt-databinding-jaxb</artifactId>
|
453
|
+
</exclusion>
|
454
|
+
</exclusions>
|
455
|
+
</dependency>
|
456
|
+
<dependency>
|
457
|
+
<groupId>com.google.code.gson</groupId>
|
458
|
+
<artifactId>gson</artifactId>
|
459
|
+
<version>2.1</version>
|
460
|
+
</dependency>
|
461
|
+
<dependency>
|
462
|
+
<groupId>javax.xml.bind</groupId>
|
463
|
+
<artifactId>jaxb-api</artifactId>
|
464
|
+
<version>2.2.1</version>
|
465
|
+
<exclusions>
|
466
|
+
<exclusion>
|
467
|
+
<groupId>javax.xml.stream</groupId>
|
468
|
+
<artifactId>stax-api</artifactId>
|
469
|
+
</exclusion>
|
470
|
+
<exclusion>
|
471
|
+
<groupId>javax.activation</groupId>
|
472
|
+
<artifactId>activation</artifactId>
|
473
|
+
</exclusion>
|
474
|
+
</exclusions>
|
475
|
+
</dependency>
|
476
|
+
<dependency>
|
477
|
+
<groupId>com.sun.xml.bind</groupId>
|
478
|
+
<artifactId>jaxb-impl</artifactId>
|
479
|
+
<version>2.2.1.1</version>
|
480
|
+
</dependency>
|
481
|
+
<dependency>
|
482
|
+
<groupId>jdom</groupId>
|
483
|
+
<artifactId>jdom</artifactId>
|
484
|
+
<version>b9</version>
|
485
|
+
</dependency>
|
486
|
+
<dependency>
|
487
|
+
<groupId>org.codehaus.jettison</groupId>
|
488
|
+
<artifactId>jettison</artifactId>
|
489
|
+
<version>1.2</version>
|
490
|
+
<exclusions>
|
491
|
+
<exclusion>
|
492
|
+
<groupId>stax</groupId>
|
493
|
+
<artifactId>stax-api</artifactId>
|
494
|
+
</exclusion>
|
495
|
+
</exclusions>
|
496
|
+
</dependency>
|
497
|
+
<dependency>
|
498
|
+
<groupId>joda-time</groupId>
|
499
|
+
<artifactId>joda-time</artifactId>
|
500
|
+
<version>2.2</version>
|
501
|
+
</dependency>
|
502
|
+
<dependency>
|
503
|
+
<groupId>javax.ws.rs</groupId>
|
504
|
+
<artifactId>jsr311-api</artifactId>
|
505
|
+
<version>1.1.1</version>
|
506
|
+
</dependency>
|
507
|
+
<dependency>
|
508
|
+
<groupId>jstl</groupId>
|
509
|
+
<artifactId>jstl</artifactId>
|
510
|
+
<version>1.1.2</version>
|
511
|
+
</dependency>
|
512
|
+
<dependency>
|
513
|
+
<groupId>log4j</groupId>
|
514
|
+
<artifactId>log4j</artifactId>
|
515
|
+
<version>1.2.16</version>
|
516
|
+
</dependency>
|
517
|
+
<dependency>
|
518
|
+
<groupId>javax.mail</groupId>
|
519
|
+
<artifactId>mail</artifactId>
|
520
|
+
<version>1.4.5</version>
|
521
|
+
<exclusions>
|
522
|
+
<exclusion>
|
523
|
+
<groupId>javax.activation</groupId>
|
524
|
+
<artifactId>activation</artifactId>
|
525
|
+
</exclusion>
|
526
|
+
</exclusions>
|
527
|
+
</dependency>
|
528
|
+
<dependency>
|
529
|
+
<groupId>com.danga</groupId>
|
530
|
+
<artifactId>java_memcached</artifactId>
|
531
|
+
<version>2.5.1</version>
|
532
|
+
</dependency>
|
533
|
+
<dependency>
|
534
|
+
<groupId>net.sourceforge.nekohtml</groupId>
|
535
|
+
<artifactId>nekohtml</artifactId>
|
536
|
+
<version>1.9.18</version>
|
537
|
+
</dependency>
|
538
|
+
<dependency>
|
539
|
+
<groupId>com.megacorp.onlineshop.services.client.common</groupId>
|
540
|
+
<artifactId>onlineshop-common-client</artifactId>
|
541
|
+
<version>${onlineshop.common.client.version}</version>
|
542
|
+
</dependency>
|
543
|
+
<dependency>
|
544
|
+
<groupId>org.springframework</groupId>
|
545
|
+
<artifactId>org.springframework.aop</artifactId>
|
546
|
+
<version>${org.springframework.version}</version>
|
547
|
+
<exclusions>
|
548
|
+
<exclusion>
|
549
|
+
<groupId>org.aopalliance</groupId>
|
550
|
+
<artifactId>com.springsource.org.aopalliance</artifactId>
|
551
|
+
</exclusion>
|
552
|
+
</exclusions>
|
553
|
+
</dependency>
|
554
|
+
<dependency>
|
555
|
+
<groupId>org.springframework</groupId>
|
556
|
+
<artifactId>org.springframework.beans</artifactId>
|
557
|
+
<version>${org.springframework.version}</version>
|
558
|
+
</dependency>
|
559
|
+
<dependency>
|
560
|
+
<groupId>org.springframework</groupId>
|
561
|
+
<artifactId>org.springframework.context</artifactId>
|
562
|
+
<version>${org.springframework.version}</version>
|
563
|
+
</dependency>
|
564
|
+
<dependency>
|
565
|
+
<groupId>org.springframework</groupId>
|
566
|
+
<artifactId>org.springframework.core</artifactId>
|
567
|
+
<version>${org.springframework.version}</version>
|
568
|
+
</dependency>
|
569
|
+
<dependency>
|
570
|
+
<groupId>org.springframework</groupId>
|
571
|
+
<artifactId>org.springframework.expression</artifactId>
|
572
|
+
<version>${org.springframework.version}</version>
|
573
|
+
</dependency>
|
574
|
+
<dependency>
|
575
|
+
<groupId>org.springframework</groupId>
|
576
|
+
<artifactId>org.springframework.web</artifactId>
|
577
|
+
<version>${org.springframework.version}</version>
|
578
|
+
<exclusions>
|
579
|
+
<exclusion>
|
580
|
+
<groupId>org.aopalliance</groupId>
|
581
|
+
<artifactId>com.springsource.org.aopalliance</artifactId>
|
582
|
+
</exclusion>
|
583
|
+
</exclusions>
|
584
|
+
</dependency>
|
585
|
+
<dependency>
|
586
|
+
<groupId>com.opensymphony.oscache</groupId>
|
587
|
+
<artifactId>com.springsource.com.opensymphony.oscache</artifactId>
|
588
|
+
<version>2.4.1</version>
|
589
|
+
<exclusions>
|
590
|
+
<exclusion>
|
591
|
+
<groupId>org.apache.commons</groupId>
|
592
|
+
<artifactId>com.springsource.org.apache.commons.logging</artifactId>
|
593
|
+
</exclusion>
|
594
|
+
<exclusion>
|
595
|
+
<groupId>org.hibernate</groupId>
|
596
|
+
<artifactId>com.springsource.org.hibernate</artifactId>
|
597
|
+
</exclusion>
|
598
|
+
<exclusion>
|
599
|
+
<groupId>org.jgroups</groupId>
|
600
|
+
<artifactId>com.springsource.org.jgroups</artifactId>
|
601
|
+
</exclusion>
|
602
|
+
</exclusions>
|
603
|
+
</dependency>
|
604
|
+
<dependency>
|
605
|
+
<groupId>org.slf4j</groupId>
|
606
|
+
<artifactId>slf4j-log4j12</artifactId>
|
607
|
+
<version>1.5.6</version>
|
608
|
+
</dependency>
|
609
|
+
<dependency>
|
610
|
+
<groupId>org.slf4j</groupId>
|
611
|
+
<artifactId>slf4j-api</artifactId>
|
612
|
+
<version>1.5.6</version>
|
613
|
+
</dependency>
|
614
|
+
<dependency>
|
615
|
+
<groupId>xalan</groupId>
|
616
|
+
<artifactId>serializer</artifactId>
|
617
|
+
<version>2.7.1</version>
|
618
|
+
<exclusions>
|
619
|
+
<exclusion>
|
620
|
+
<groupId>xml-apis</groupId>
|
621
|
+
<artifactId>xml-apis</artifactId>
|
622
|
+
</exclusion>
|
623
|
+
</exclusions>
|
624
|
+
</dependency>
|
625
|
+
<dependency>
|
626
|
+
<groupId>com.megacorp.onlineshop.services.client.common</groupId>
|
627
|
+
<artifactId>shopboxservice-client</artifactId>
|
628
|
+
<version>${shopboxservice.client.version}</version>
|
629
|
+
</dependency>
|
630
|
+
<dependency>
|
631
|
+
<groupId>com.google.code.simple-spring-memcached</groupId>
|
632
|
+
<artifactId>spymemcached</artifactId>
|
633
|
+
<version>2.8.4</version>
|
634
|
+
</dependency>
|
635
|
+
<dependency>
|
636
|
+
<groupId>org.tuckey</groupId>
|
637
|
+
<artifactId>urlrewritefilter</artifactId>
|
638
|
+
<version>4.0.3</version>
|
639
|
+
</dependency>
|
640
|
+
<dependency>
|
641
|
+
<groupId>com.megacorp.sda.web</groupId>
|
642
|
+
<artifactId>WebCoreGeneric</artifactId>
|
643
|
+
<version>0.1302.0.2</version>
|
644
|
+
</dependency>
|
645
|
+
<dependency>
|
646
|
+
<groupId>org.apache.axis</groupId>
|
647
|
+
<artifactId>axis</artifactId>
|
648
|
+
<version>1.4</version>
|
649
|
+
</dependency>
|
650
|
+
<dependency>
|
651
|
+
<groupId>xalan</groupId>
|
652
|
+
<artifactId>xalan</artifactId>
|
653
|
+
<version>2.7.1</version>
|
654
|
+
</dependency>
|
655
|
+
<dependency>
|
656
|
+
<groupId>xerces</groupId>
|
657
|
+
<artifactId>xercesImpl</artifactId>
|
658
|
+
<version>2.9.1</version>
|
659
|
+
<exclusions>
|
660
|
+
<exclusion>
|
661
|
+
<groupId>xml-apis</groupId>
|
662
|
+
<artifactId>xml-apis</artifactId>
|
663
|
+
</exclusion>
|
664
|
+
</exclusions>
|
665
|
+
</dependency>
|
666
|
+
<dependency>
|
667
|
+
<groupId>com.thoughtworks.xstream</groupId>
|
668
|
+
<artifactId>xstream</artifactId>
|
669
|
+
<version>1.4.3</version>
|
670
|
+
<exclusions>
|
671
|
+
<exclusion>
|
672
|
+
<groupId>xmlpull</groupId>
|
673
|
+
<artifactId>xmlpull</artifactId>
|
674
|
+
</exclusion>
|
675
|
+
<exclusion>
|
676
|
+
<groupId>xpp3</groupId>
|
677
|
+
<artifactId>xpp3_min</artifactId>
|
678
|
+
</exclusion>
|
679
|
+
</exclusions>
|
680
|
+
</dependency>
|
681
|
+
<dependency>
|
682
|
+
<groupId>com.megacorp.online.common</groupId>
|
683
|
+
<artifactId>megacorp-common-marketing</artifactId>
|
684
|
+
<version>${megacorp.common.marketing.version}</version>
|
685
|
+
<exclusions>
|
686
|
+
<exclusion>
|
687
|
+
<artifactId>geronimo-spec-j2ee</artifactId>
|
688
|
+
<groupId>geronimo-spec</groupId>
|
689
|
+
</exclusion>
|
690
|
+
<exclusion>
|
691
|
+
<groupId>org.jboss.client</groupId>
|
692
|
+
<artifactId>jbossall-client</artifactId>
|
693
|
+
</exclusion>
|
694
|
+
<exclusion>
|
695
|
+
<groupId>org.springframework</groupId>
|
696
|
+
<artifactId>org.springframework.context</artifactId>
|
697
|
+
</exclusion>
|
698
|
+
<exclusion>
|
699
|
+
<groupId>com.megacorp.online.bps.core</groupId>
|
700
|
+
<artifactId>bigpond-services-core</artifactId>
|
701
|
+
</exclusion>
|
702
|
+
</exclusions>
|
703
|
+
</dependency>
|
704
|
+
|
705
|
+
<!-- Test dependencies -->
|
706
|
+
<!-- Uncomment for Jetty
|
707
|
+
<dependency>
|
708
|
+
<groupId>org.eclipse.jetty</groupId>
|
709
|
+
<artifactId>jetty-util</artifactId>
|
710
|
+
<version>8.1.9.v20130131</version>
|
711
|
+
<scope>test</scope>
|
712
|
+
</dependency>
|
713
|
+
<dependency>
|
714
|
+
<groupId>org.eclipse.jetty</groupId>
|
715
|
+
<artifactId>jetty-webapp</artifactId>
|
716
|
+
<version>8.1.9.v20130131</version>
|
717
|
+
<scope>test</scope>
|
718
|
+
</dependency>
|
719
|
+
<dependency>
|
720
|
+
<groupId>org.eclipse.jetty</groupId>
|
721
|
+
<artifactId>jetty-server</artifactId>
|
722
|
+
<version>8.1.9.v20130131</version>
|
723
|
+
<scope>test</scope>
|
724
|
+
</dependency>
|
725
|
+
|
726
|
+
<dependency>
|
727
|
+
<groupId>com.jayway.restassured</groupId>
|
728
|
+
<artifactId>rest-assured</artifactId>
|
729
|
+
<version>1.6.2</version>
|
730
|
+
<scope>test</scope>
|
731
|
+
</dependency> -->
|
732
|
+
|
733
|
+
<dependency>
|
734
|
+
<groupId>junit</groupId>
|
735
|
+
<artifactId>junit</artifactId>
|
736
|
+
<scope>test</scope>
|
737
|
+
</dependency>
|
738
|
+
<dependency>
|
739
|
+
<groupId>org.easymock</groupId>
|
740
|
+
<artifactId>easymock</artifactId>
|
741
|
+
<version>3.1</version>
|
742
|
+
<scope>test</scope>
|
743
|
+
</dependency>
|
744
|
+
<dependency>
|
745
|
+
<groupId>nl.jqno.equalsverifier</groupId>
|
746
|
+
<artifactId>equalsverifier</artifactId>
|
747
|
+
<version>1.1.3</version>
|
748
|
+
<scope>test</scope>
|
749
|
+
</dependency>
|
750
|
+
<dependency>
|
751
|
+
<groupId>com.googlecode.jmockit</groupId>
|
752
|
+
<artifactId>jmockit</artifactId>
|
753
|
+
<version>0.999.15</version>
|
754
|
+
<scope>test</scope>
|
755
|
+
</dependency>
|
756
|
+
<dependency>
|
757
|
+
<groupId>org.objenesis</groupId>
|
758
|
+
<artifactId>objenesis-tck</artifactId>
|
759
|
+
<version>1.2</version>
|
760
|
+
<scope>test</scope>
|
761
|
+
</dependency>
|
762
|
+
<dependency>
|
763
|
+
<groupId>org.springframework</groupId>
|
764
|
+
<artifactId>org.springframework.test</artifactId>
|
765
|
+
<version>${org.springframework.version}</version>
|
766
|
+
<scope>test</scope>
|
767
|
+
</dependency>
|
768
|
+
<dependency>
|
769
|
+
<groupId>oro</groupId>
|
770
|
+
<artifactId>oro</artifactId>
|
771
|
+
<version>2.0.8</version>
|
772
|
+
<scope>test</scope>
|
773
|
+
</dependency>
|
774
|
+
<dependency>
|
775
|
+
<groupId>cglib</groupId>
|
776
|
+
<artifactId>cglib-nodep</artifactId>
|
777
|
+
<version>2.2</version>
|
778
|
+
<scope>test</scope>
|
779
|
+
</dependency>
|
780
|
+
</dependencies>
|
781
|
+
|
782
|
+
<build>
|
783
|
+
<pluginManagement />
|
784
|
+
<plugins />
|
785
|
+
</build>
|
786
|
+
|
787
|
+
<profiles>
|
788
|
+
<profile>
|
789
|
+
<id>solaris</id>
|
790
|
+
<properties>
|
791
|
+
<assembly.type>webapp-multiple</assembly.type>
|
792
|
+
<appserver.basedir>data/pa</appserver.basedir>
|
793
|
+
<appserver.container>mobileservices</appserver.container>
|
794
|
+
<install.user>prodapps</install.user>
|
795
|
+
<install.group>prodapps</install.group>
|
796
|
+
<webapp.context>ROOT</webapp.context>
|
797
|
+
</properties>
|
798
|
+
<build>
|
799
|
+
<pluginManagement>
|
800
|
+
<plugins>
|
801
|
+
<plugin>
|
802
|
+
<groupId>org.apache.maven.plugins</groupId>
|
803
|
+
<artifactId>maven-assembly-plugin</artifactId>
|
804
|
+
<!-- Override the corporate pom until the new assemblies are released -->
|
805
|
+
<dependencies>
|
806
|
+
<dependency>
|
807
|
+
<groupId>com.megacorp.maven</groupId>
|
808
|
+
<artifactId>assemblies</artifactId>
|
809
|
+
<version>3</version>
|
810
|
+
</dependency>
|
811
|
+
</dependencies>
|
812
|
+
</plugin>
|
813
|
+
<plugin>
|
814
|
+
<groupId>org.codehaus.mojo</groupId>
|
815
|
+
<artifactId>solaris-maven-plugin</artifactId>
|
816
|
+
</plugin>
|
817
|
+
</plugins>
|
818
|
+
</pluginManagement>
|
819
|
+
</build>
|
820
|
+
</profile>
|
821
|
+
</profiles>
|
822
|
+
</project>
|