Skip to content

Commit dbc3e95

Browse files
author
alperez
committed
Merge branch 'release-1.1.2-rc'
Conflicts: docs/pom.xml perf/pom.xml pom.xml sensei-core/pom.xml sensei-gateways/pom.xml sensei-hadoop-indexing/pom.xml sensei-parent/pom.xml sensei-war/pom.xml
2 parents f8079ca + e0de805 commit dbc3e95

File tree

6 files changed

+29
-13
lines changed

6 files changed

+29
-13
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
<plugins>
3131
<plugin>
3232
<artifactId>maven-deploy-plugin</artifactId>
33+
<version>2.7</version>
3334
<configuration>
3435
<skip>true</skip> <!-- No need to deploy the reactor -->
3536
</configuration>

sensei-core/pom.xml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
<plugin>
4242
<groupId>org.apache.maven.plugins</groupId>
4343
<artifactId>maven-source-plugin</artifactId>
44+
<version>2.1.2</version>
4445
<executions>
4546
<execution>
4647
<id>attach-sources</id>
@@ -53,6 +54,7 @@
5354
<plugin>
5455
<groupId>org.apache.maven.plugins</groupId>
5556
<artifactId>maven-javadoc-plugin</artifactId>
57+
<version>2.8.1</version>
5658
<executions>
5759
<execution>
5860
<id>attach-javadocs</id>
@@ -64,6 +66,7 @@
6466
</plugin>
6567
<plugin>
6668
<artifactId>maven-dependency-plugin</artifactId>
69+
<version>2.4</version>
6770
<executions>
6871
<execution>
6972
<phase>package</phase>
@@ -115,6 +118,7 @@
115118
<plugin>
116119
<groupId>org.codehaus.mojo</groupId>
117120
<artifactId>build-helper-maven-plugin</artifactId>
121+
<version>1.7</version>
118122
<executions>
119123
<execution>
120124
<id>add-source</id>
@@ -177,12 +181,6 @@
177181
</exclusions>
178182
</dependency>
179183

180-
<dependency>
181-
<groupId>com.linkedin.zoie</groupId>
182-
<artifactId>zoie-core</artifactId>
183-
<version>3.1.2-SNAPSHOT</version>
184-
</dependency>
185-
186184
<dependency>
187185
<groupId>com.linkedin.zoie</groupId>
188186
<artifactId>zoie-jms</artifactId>
@@ -238,7 +236,6 @@
238236
<groupId>com.browseengine.bobo</groupId>
239237
<artifactId>bobo-browse</artifactId>
240238
<version>3.0.5-SNAPSHOT</version>
241-
<type>jar</type>
242239
</dependency>
243240

244241
<dependency>

sensei-core/src/main/java/com/senseidb/conf/SenseiFacetHandlerBuilder.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,11 @@ public String getName()
293293
{
294294
return name;
295295
}
296+
297+
@Override
298+
public boolean isLoadLazily() {
299+
return false;
300+
}
296301
};
297302
}
298303

@@ -456,6 +461,11 @@ public String getName() {
456461
return name;
457462
}
458463

464+
@Override
465+
public boolean isLoadLazily() {
466+
return false;
467+
}
468+
459469
@Override
460470
public RuntimeFacetHandler<?> get(FacetHandlerInitializerParam params) {
461471
long overrideNow = -1;

sensei-core/src/test/java/com/senseidb/test/plugin/MockRuntimeFacetHandlerFactory.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,9 @@ public RuntimeFacetHandler<?> get(FacetHandlerInitializerParam params) {
1717
return null;
1818
}
1919

20+
@Override
21+
public boolean isLoadLazily() {
22+
return false;
23+
}
24+
2025
}

sensei-gateways/pom.xml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
<plugin>
3939
<groupId>org.apache.maven.plugins</groupId>
4040
<artifactId>maven-source-plugin</artifactId>
41+
<version>2.1.2</version>
4142
<executions>
4243
<execution>
4344
<id>attach-sources</id>
@@ -50,6 +51,7 @@
5051
<plugin>
5152
<groupId>org.apache.maven.plugins</groupId>
5253
<artifactId>maven-javadoc-plugin</artifactId>
54+
<version>2.8.1</version>
5355
<executions>
5456
<execution>
5557
<id>attach-javadocs</id>
@@ -61,6 +63,7 @@
6163
</plugin>
6264
<plugin>
6365
<artifactId>maven-dependency-plugin</artifactId>
66+
<version>2.4</version>
6467
<executions>
6568
<execution>
6669
<phase>package</phase>
@@ -120,13 +123,13 @@
120123
<groupId>org.apache.kafka</groupId>
121124
<artifactId>kafka</artifactId>
122125
<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>
126129
<exclusion>
127130
<groupId>zkclient</groupId>
128131
</exclusion>
129-
</exclusions>
132+
</exclusions -->
130133
</dependency>
131134

132135
<dependency>

sensei-parent/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
<description>sensei search</description>
1010
<url>http://www.senseidb.com/</url>
1111

12-
<parent>
12+
<!-- parent>
1313
<groupId>org.sonatype.oss</groupId>
1414
<artifactId>oss-parent</artifactId>
1515
<version>6</version>
16-
</parent>
16+
</parent -->
1717

1818
<inceptionYear>2010</inceptionYear>
1919

0 commit comments

Comments
 (0)