Skip to content

Commit

Permalink
Issue 552: (step 1) move core code to its own subdirectory
Browse files Browse the repository at this point in the history
git-svn-id: https://google-guice.googlecode.com/svn/trunk@1300 d779f126-a31b-0410-b53b-1d3aecad763e
  • Loading branch information
mcculls committed Oct 21, 2010
1 parent 97adab5 commit 74d714c
Show file tree
Hide file tree
Showing 298 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions build.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
lib.dir=lib
src.dir=src
test.dir=test
src.dir=core/src
test.dir=core/test
servlet.src.dir=extensions/servlet/src
spring.src.dir=extensions/spring/src
assistedinject.src.dir=extensions/assistedinject/src
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
docletpath="lib/build/doclava.jar"
bootclasspath="${javahome}/jre/lib/rt.jar"
maxmemory="512M">
<fileset dir="src" defaultexcludes="yes">
<fileset dir="${src.dir}" defaultexcludes="yes">
<include name="com/google/**"/>
<exclude name="com/google/inject/internal/**"/>
</fileset>
Expand Down
2 changes: 1 addition & 1 deletion common.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
description="Create a .jar file with sources">
<mkdir dir="${build.dir}"/>
<zip destfile="${build.dir}/${ant.project.name}-${version}-src.jar">
<fileset dir="src"/>
<fileset dir="${src.dir}"/>
</zip>
</target>

Expand Down
6 changes: 3 additions & 3 deletions copy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

client=/usr/local/google/clients/collect/google3

srcdir=src/com/google/inject/internal
testdir=test/com/google/inject/internal
srcdir=core/src/com/google/inject/internal
testdir=core/test/com/google/inject/internal

filter() {
sed 's/com.google.common.base.internal/com.google.inject.internal/' | \
Expand Down Expand Up @@ -51,4 +51,4 @@ copy $commonpath/collect/ForwardingSet.java $testdir
copy $commonpath/collect/ForwardingMap.java $testdir
copy $commonpath/base/Preconditions.java $testdir

chmod +w -R src test
chmod +w -R $srcdir $testdir
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions guice.iml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/core/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/core/test" isTestSource="true" />
<excludeFolder url="file://$MODULE_DIR$/build" />
<excludeFolder url="file://$MODULE_DIR$/classes" />
<excludeFolder url="file://$MODULE_DIR$/javadoc" />
Expand Down

0 comments on commit 74d714c

Please sign in to comment.