diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-03-14 00:27:57 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-03-14 00:27:57 -0700 |
| commit | de1ba85346bd2af41ebb98f152bb769e2b630139 (patch) | |
| tree | f3d65d148e69e1b84ef17a953f1f0fa14286aae1 /other/java/client/pom.xml | |
| parent | e2e691d9c23d2b18b032f4d464ca0756c134ed87 (diff) | |
| download | seaweedfs-de1ba85346bd2af41ebb98f152bb769e2b630139.tar.xz seaweedfs-de1ba85346bd2af41ebb98f152bb769e2b630139.zip | |
HDFS support encrypted data storage
Diffstat (limited to 'other/java/client/pom.xml')
| -rw-r--r-- | other/java/client/pom.xml | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/other/java/client/pom.xml b/other/java/client/pom.xml index 0c585a941..945071336 100644 --- a/other/java/client/pom.xml +++ b/other/java/client/pom.xml @@ -1,10 +1,11 @@ <?xml version="1.0" encoding="UTF-8"?> -<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"> +<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"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.chrislusf</groupId> <artifactId>seaweedfs-client</artifactId> - <version>1.2.4</version> + <version>1.2.5</version> <parent> <groupId>org.sonatype.oss</groupId> @@ -88,8 +89,8 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> - <source>7</source> - <target>7</target> + <source>8</source> + <target>8</target> </configuration> </plugin> <plugin> @@ -97,9 +98,11 @@ <artifactId>protobuf-maven-plugin</artifactId> <version>0.6.1</version> <configuration> - <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier}</protocArtifact> + <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier} + </protocArtifact> <pluginId>grpc-java</pluginId> - <pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier}</pluginArtifact> + <pluginArtifact>io.grpc:protoc-gen-grpc-java:${grpc.version}:exe:${os.detected.classifier} + </pluginArtifact> </configuration> <executions> <execution> |
