Skip to content

Commit

Permalink
Fix #37
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Sep 9, 2017
1 parent 9f82605 commit c3a9ae8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
4 changes: 4 additions & 0 deletions VERSION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Java ClassMate project: licensed under Apache License 2.0

Release notes:

1.3.4 (09-Sep-2017)

#38: Add `Automatic-Module-Name` for JDK9 interoperability

1.3.3 (28-Sep-2016)

#33: "ghost" type parameter in field
Expand Down
21 changes: 16 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
<description>Library for introspecting types with full generic information
including resolving of field and method types.
</description>
<url>http://github.com/cowtowncoder/java-classmate</url>
<url>http://github.com/FasterXML/java-classmate</url>
<scm>
<connection>scm:git:[email protected]:cowtowncoder/java-classmate.git</connection>
<developerConnection>scm:git:[email protected]:cowtowncoder/java-classmate.git</developerConnection>
<url>http://github.com/cowtowncoder/java-classmate</url>
<connection>scm:git:[email protected]:FasterXML/java-classmate.git</connection>
<developerConnection>scm:git:[email protected]:FasterXML/java-classmate.git</developerConnection>
<url>http://github.com/FasterXML/java-classmate</url>
<tag>HEAD</tag>
</scm>
<developers>
Expand Down Expand Up @@ -71,6 +71,17 @@ com.fasterxml.classmate.*;version=${project.version}

<build>
<plugins>
<!-- As per [#38] add `Automatic-Module-Name` -->
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions combine.children="merge">
<Automatic-Module-Name>com.fasterxml.classmate</Automatic-Module-Name>
</instructions>
</configuration>
</plugin>

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
Expand Down Expand Up @@ -103,7 +114,7 @@ com.fasterxml.classmate.*;version=${project.version}
<encoding>UTF-8</encoding>
<maxmemory>512m</maxmemory>
<links>
<link>http://docs.oracle.com/javase/7/docs/api/</link>
<link>http://docs.oracle.com/javase/8/docs/api/</link>
</links>
</configuration>
<executions>
Expand Down

0 comments on commit c3a9ae8

Please sign in to comment.