Skip to content

change parent pom artifactId/name to differentiate in IDE and build t… #608

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 7, 2016
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
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Features
* [#582](https://github.com/java-native-access/jna/pull/582): Mavenize the build process - Phase 1: building the native code via Maven [@lgoldstein](https://github.com/lgoldstein).
* [#606](https://github.com/java-native-access/jna/pull/606): Added Kerne32Util method to facilitate checking that calls to LocalFree/GlobalFree are successful [@lgoldstein](https://github.com/lgoldstein).
* [#612](https://github.com/java-native-access/jna/pull/612): Kernel32Util#freeLocal/GlobalMemory always throws Win32Exception if failed [@lgoldstein](https://github.com/lgoldstein).
* [#608](https://github.com/java-native-access/jna/pull/608): Mavenize the build process - change parent and native pom artifactId/name to differentiate in IDE and build tools. [@bhamail](https://github.com/bhamail)

Bug Fixes
---------
Expand Down
6 changes: 3 additions & 3 deletions native/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@

<parent>
<groupId>net.java.dev.jna</groupId>
<artifactId>parent</artifactId>
<artifactId>jna-parent</artifactId>
<version>4.3.0-SNAPHSOT</version>
<relativePath>../parent</relativePath>
</parent>

<artifactId>native</artifactId>
<artifactId>jna-native</artifactId>
<packaging>pom</packaging>

<name>net.java.dev.jna:native</name>
<name>net.java.dev.jna:jna-native</name>

<build>
<plugins>
Expand Down
4 changes: 2 additions & 2 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<modelVersion>4.0.0</modelVersion>

<groupId>net.java.dev.jna</groupId>
<artifactId>parent</artifactId>
<artifactId>jna-parent</artifactId>
<version>4.3.0-SNAPHSOT</version>
<packaging>pom</packaging>

<name>net.java.dev.jna:parent</name>
<name>net.java.dev.jna:jna-parent</name>
<url>https://github.com/java-native-access/jna</url>
<licenses>
<license>
Expand Down