Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
castortech committed Dec 16, 2021
1 parent 8d13dac commit 962e7b1
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 84 deletions.
164 changes: 82 additions & 82 deletions mdbxjni-all/pom.xml
Original file line number Diff line number Diff line change
@@ -1,94 +1,94 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (C) 2018, Castor Technologies Inc.
Copyright (C) 2018, Castor Technologies Inc.
http://www.castortech.com/
http://www.castortech.com/
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.castortech.mdbxjni</groupId>
<artifactId>mdbxjni-project</artifactId>
<version>99-master-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.castortech.mdbxjni</groupId>
<artifactId>mdbxjni-project</artifactId>
<version>99-master-SNAPSHOT</version>
</parent>

<groupId>com.castortech.mdbxjni</groupId>
<artifactId>mdbxjni-all</artifactId>
<version>99-master-SNAPSHOT</version>
<packaging>bundle</packaging>

<name>${project.artifactId}</name>
<description>An uber jar which contains all the mdbxjni platform libraries and dependencies</description>
<groupId>com.castortech.mdbxjni</groupId>
<artifactId>mdbxjni-all</artifactId>
<version>99-master-SNAPSHOT</version>
<packaging>bundle</packaging>

<dependencies>
<dependency>
<groupId>com.castortech.mdbxjni</groupId>
<artifactId>mdbxjni</artifactId>
<version>99-master-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.castortech.mdbxjni</groupId>
<artifactId>mdbxjni-osx64</artifactId>
<version>99-master-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.castortech.mdbxjni</groupId>
<artifactId>mdbxjni-linux64</artifactId>
<version>99-master-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.castortech.mdbxjni</groupId>
<artifactId>mdbxjni-win64</artifactId>
<version>99-master-SNAPSHOT</version>
</dependency>
</dependencies>
<name>${project.artifactId}</name>
<description>An uber jar which contains all the mdbxjni platform libraries and dependencies</description>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${mvn-bundle-version}</version>
<extensions>true</extensions>
<inherited>true</inherited>
<configuration>
<instructions>
<Bundle-Name>${project.artifactId}</Bundle-Name>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Export-Package>
org.fusesource.lmdbjni*;version=${project.version},
</Export-Package>
<Import-Package>
org.iq80.leveldb;resolution:=optional
</Import-Package>
<DynamicImport-Package></DynamicImport-Package>
<Private-Package>org.fusesource.hawtjni*,!*</Private-Package>
<Implementation-Title>LevelDB JNI</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Embed-Dependency>
*;groupId=org.fusesource.lmdbjni;inline=META-INF/native/*,
</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
<Bundle-NativeCode>
META-INF/native/windows64/lmdbjni.dll;osname=Win32;processor=x86-64,
META-INF/native/osx64/liblmdbjni.dylib;osname=macosx;processor=x86-64,
META-INF/native/linux64/liblmdbjni.so;osname=Linux;processor=x86-64
</Bundle-NativeCode>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.castortech.mdbxjni</groupId>
<artifactId>mdbxjni</artifactId>
<version>99-master-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.castortech.mdbxjni</groupId>
<artifactId>mdbxjni-osx64</artifactId>
<version>99-master-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.castortech.mdbxjni</groupId>
<artifactId>mdbxjni-linux64</artifactId>
<version>99-master-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.castortech.mdbxjni</groupId>
<artifactId>mdbxjni-win64</artifactId>
<version>99-master-SNAPSHOT</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>${mvn-bundle-version}</version>
<extensions>true</extensions>
<inherited>true</inherited>
<configuration>
<instructions>
<Bundle-Name>${project.artifactId}</Bundle-Name>
<Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
<Export-Package>
com.castortech.mdbxjni*;version=${project.version},
</Export-Package>
<Import-Package>
org.iq80.leveldb;resolution:=optional
</Import-Package>
<DynamicImport-Package></DynamicImport-Package>
<Private-Package>org.fusesource.hawtjni*,!*</Private-Package>
<Implementation-Title>LevelDB JNI</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Embed-Dependency>
*;groupId=com.castortech.mdbxjni;inline=META-INF/native/*,
</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
<Bundle-NativeCode>
META-INF/native/windows64/mdbxjni.dll;osname=Win32;processor=x86-64,
META-INF/native/osx64/libmdbjni.dylib;osname=macosx;processor=x86-64,
META-INF/native/linux64/libmdbxjni.so;osname=Linux;processor=x86-64
</Bundle-NativeCode>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion mdbxjni-linux64/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<groupId>com.castortech.mdbxjni</groupId>
<artifactId>mdbxjni-linux64</artifactId>
<version>99-master-SNAPSHOT</version>

<name>${project.artifactId}</name>
<description>The mdbxjni linux 64 bit native libraries</description>

Expand Down
1 change: 0 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@
</plugins>
</build>


<reporting>
<plugins>
<plugin>
Expand Down

0 comments on commit 962e7b1

Please sign in to comment.