aboutsummaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-02-09 02:51:29 +0100
committerSven Gothel <[email protected]>2011-02-09 02:51:29 +0100
commit4026ba2641a98a742dd3b98cfc72d12c409e2250 (patch)
tree8df59a55f4986ea599cbf6c77339f0ec9b607a23 /make/build.xml
parentb649eb1b65614c6f1b2bc734cfb40580b931dc1d (diff)
Move implementation private files from com.jogamp.<module>.impl. to jogamp.<module>
- com.jogamp.common.impl -> jogamp.common This sorts implementation details from the top level, ie skipping the public 'com', allowing a better seperation of public classes and implementation details and also reduces strings. This approach of public/private seperation is also used in the OpenJDK.
Diffstat (limited to 'make/build.xml')
-rw-r--r--make/build.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/build.xml b/make/build.xml
index f4fcdc8..c96e835 100644
--- a/make/build.xml
+++ b/make/build.xml
@@ -656,6 +656,7 @@
<fileset dir="${classes}">
<include name="com/jogamp/gluegen/runtime/*.class" />
<include name="com/jogamp/common/**" />
+ <include name="jogamp/common/**" />
</fileset>
</jar>
<jar destfile="${build}/gluegen-rt-natives-${os.and.arch}.jar" manifest="${build}/Manifest-rt.temp">
@@ -743,7 +744,6 @@
maxmemory="256m" >
<classpath path="${classes}"/>
<link offline="true" href="${javadoc.link}" packagelistLoc="142-packages" />
- <excludepackage name="com.jogamp.common.impl"/>
</javadoc>
<zip destfile="${build}/javadoc.zip"
basedir="${javadoc.root.path}"