File tree Expand file tree Collapse file tree 6 files changed +29
-13
lines changed
main/java/com/senseidb/conf
test/java/com/senseidb/test/plugin Expand file tree Collapse file tree 6 files changed +29
-13
lines changed Original file line number Diff line number Diff line change 30
30
<plugins >
31
31
<plugin >
32
32
<artifactId >maven-deploy-plugin</artifactId >
33
+ <version >2.7</version >
33
34
<configuration >
34
35
<skip >true</skip > <!-- No need to deploy the reactor -->
35
36
</configuration >
Original file line number Diff line number Diff line change 41
41
<plugin >
42
42
<groupId >org.apache.maven.plugins</groupId >
43
43
<artifactId >maven-source-plugin</artifactId >
44
+ <version >2.1.2</version >
44
45
<executions >
45
46
<execution >
46
47
<id >attach-sources</id >
53
54
<plugin >
54
55
<groupId >org.apache.maven.plugins</groupId >
55
56
<artifactId >maven-javadoc-plugin</artifactId >
57
+ <version >2.8.1</version >
56
58
<executions >
57
59
<execution >
58
60
<id >attach-javadocs</id >
64
66
</plugin >
65
67
<plugin >
66
68
<artifactId >maven-dependency-plugin</artifactId >
69
+ <version >2.4</version >
67
70
<executions >
68
71
<execution >
69
72
<phase >package</phase >
115
118
<plugin >
116
119
<groupId >org.codehaus.mojo</groupId >
117
120
<artifactId >build-helper-maven-plugin</artifactId >
121
+ <version >1.7</version >
118
122
<executions >
119
123
<execution >
120
124
<id >add-source</id >
177
181
</exclusions >
178
182
</dependency >
179
183
180
- <dependency >
181
- <groupId >com.linkedin.zoie</groupId >
182
- <artifactId >zoie-core</artifactId >
183
- <version >3.1.2-SNAPSHOT</version >
184
- </dependency >
185
-
186
184
<dependency >
187
185
<groupId >com.linkedin.zoie</groupId >
188
186
<artifactId >zoie-jms</artifactId >
238
236
<groupId >com.browseengine.bobo</groupId >
239
237
<artifactId >bobo-browse</artifactId >
240
238
<version >3.0.5-SNAPSHOT</version >
241
- <type >jar</type >
242
239
</dependency >
243
240
244
241
<dependency >
Original file line number Diff line number Diff line change @@ -293,6 +293,11 @@ public String getName()
293
293
{
294
294
return name ;
295
295
}
296
+
297
+ @ Override
298
+ public boolean isLoadLazily () {
299
+ return false ;
300
+ }
296
301
};
297
302
}
298
303
@@ -456,6 +461,11 @@ public String getName() {
456
461
return name ;
457
462
}
458
463
464
+ @ Override
465
+ public boolean isLoadLazily () {
466
+ return false ;
467
+ }
468
+
459
469
@ Override
460
470
public RuntimeFacetHandler <?> get (FacetHandlerInitializerParam params ) {
461
471
long overrideNow = -1 ;
Original file line number Diff line number Diff line change @@ -17,4 +17,9 @@ public RuntimeFacetHandler<?> get(FacetHandlerInitializerParam params) {
17
17
return null ;
18
18
}
19
19
20
+ @ Override
21
+ public boolean isLoadLazily () {
22
+ return false ;
23
+ }
24
+
20
25
}
Original file line number Diff line number Diff line change 38
38
<plugin >
39
39
<groupId >org.apache.maven.plugins</groupId >
40
40
<artifactId >maven-source-plugin</artifactId >
41
+ <version >2.1.2</version >
41
42
<executions >
42
43
<execution >
43
44
<id >attach-sources</id >
50
51
<plugin >
51
52
<groupId >org.apache.maven.plugins</groupId >
52
53
<artifactId >maven-javadoc-plugin</artifactId >
54
+ <version >2.8.1</version >
53
55
<executions >
54
56
<execution >
55
57
<id >attach-javadocs</id >
61
63
</plugin >
62
64
<plugin >
63
65
<artifactId >maven-dependency-plugin</artifactId >
66
+ <version >2.4</version >
64
67
<executions >
65
68
<execution >
66
69
<phase >package</phase >
120
123
<groupId >org.apache.kafka</groupId >
121
124
<artifactId >kafka</artifactId >
122
125
<version >0.7.6</version >
123
- <scope >system</scope >
124
- <systemPath >${basedir} /../lib/kafka-0.7.6.jar</systemPath >
125
- <exclusions >
126
+ <!-- scope>system</scope -- >
127
+ <!-- systemPath>${basedir}/../lib/kafka-0.7.6.jar</systemPath -- >
128
+ <!-- exclusions>
126
129
<exclusion>
127
130
<groupId>zkclient</groupId>
128
131
</exclusion>
129
- </exclusions >
132
+ </exclusions -- >
130
133
</dependency >
131
134
132
135
<dependency >
Original file line number Diff line number Diff line change 9
9
<description >sensei search</description >
10
10
<url >http://www.senseidb.com/</url >
11
11
12
- <parent >
12
+ <!-- parent>
13
13
<groupId>org.sonatype.oss</groupId>
14
14
<artifactId>oss-parent</artifactId>
15
15
<version>6</version>
16
- </parent >
16
+ </parent -- >
17
17
18
18
<inceptionYear >2010</inceptionYear >
19
19
You can’t perform that action at this time.
0 commit comments