File: import_pom.patch

package info (click to toggle)
zstd-jni-java 1.5.2-5%2Bds-8
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 528 kB
  • sloc: java: 2,246; ansic: 1,031; sh: 547; xml: 68; makefile: 21
file content (57 lines) | stat: -rw-r--r-- 2,242 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Description: Import Maven upstream pom
 To allow Maven builds and avoid the unnecessary pain of sbt.
Origin: https://repo1.maven.org/maven2/com/github/luben/zstd-jni/1.5.2-5/zstd-jni-1.5.2-5.pom
Forwarded: not-needed
Last-Update: 2022-10-20

--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,48 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0">
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>com.github.luben</groupId>
+    <artifactId>zstd-jni</artifactId>
+    <packaging>jar</packaging>
+    <description>JNI bindings for Zstd native library that provides fast and high compression lossless algorithm for Java and all JVM languages.</description>
+    <version>1.5.2-5</version>
+    <licenses>
+        <license>
+            <name>BSD 2-Clause License</name>
+            <url>https://opensource.org/licenses/BSD-2-Clause</url>
+            <distribution>repo</distribution>
+        </license>
+    </licenses>
+    <name>zstd-jni</name>
+    <organization>
+        <name>com.github.luben</name>
+    </organization>
+    <url>https://github.com/luben/zstd-jni</url>
+    <scm>
+        <url>git@github.com:luben/zstd-jni.git</url>
+        <connection>scm:git:git@github.com:luben/zstd-jni.git</connection>
+    </scm>
+    <developers>
+        <developer>
+            <id>karavelov</id>
+            <name>Luben Karavelov</name>
+            <email>karavelov@gmail.com</email>
+            <organization>com.github.luben</organization>
+            <organizationUrl>https://github.com/luben</organizationUrl>
+        </developer>
+    </developers>
+    <dependencies>
+        <dependency>
+            <groupId>org.scalatest</groupId>
+            <artifactId>scalatest_2.12</artifactId>
+            <version>3.0.5</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.scalacheck</groupId>
+            <artifactId>scalacheck_2.12</artifactId>
+            <version>1.15.4</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+</project>