Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,6 @@ target

# dev tools
.idea
.classpath
.project
.settings
1 change: 0 additions & 1 deletion ceresdb-http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,4 @@
<artifactId>gson</artifactId>
</dependency>
</dependencies>

</project>
2 changes: 1 addition & 1 deletion ceresdb-protocol/src/main/java/com/ceresdb/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public static Result<WriteOk, Err> toResult(final Storage.WriteResponse resp, //
final int failed = resp.getFailed();

if (code == Result.SUCCESS) {
final Set<String> metrics = (rows != null && WriteOk.isCollectWroteDetail())
final Set<String> metrics = rows != null && WriteOk.isCollectWroteDetail()
? rows.stream()
.map(Rows::getMetric)
.collect(Collectors.toSet())
Expand Down
1 change: 0 additions & 1 deletion ceresdb-rpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@
</dependency>

</dependencies>

</project>
1 change: 0 additions & 1 deletion ceresdb-sql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,4 @@
<scope>test</scope>
</dependency>
</dependencies>

</project>
56 changes: 56 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,62 @@
</dependencyManagement>

<build>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<versionRange>[3.0,)</versionRange>
<goals>
<goal>remove</goal>
<goal>format</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>com.github.ekryd.sortpom</groupId>
<artifactId>sortpom-maven-plugin</artifactId>
<versionRange>[2.4.0,)</versionRange>
<goals>
<goal>sort</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>com.googlecode.maven-java-formatter-plugin</groupId>
<artifactId>maven-java-formatter-plugin</artifactId>
<versionRange>[0.4,)</versionRange>
<goals>
<goal>format</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down