Created
August 31, 2011 18:56
-
-
Save eed3si9n/1184385 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| test in Assembly := {} | |
| jarName in PluginA := "foo.jar" | |
| jarName in PluginB := "bar.jar" | |
| Assembly.test := {} // equivalent of test in Assembly := {} | |
| PluginA.jarName := "foo.jar" // equivalent of jarName in PluginA := "foo.jar" | |
| PluginB.jarName := "bar.jar" // equivalent of jarName in PluginB := "bar.jar" | |
| PluginA.jarName in Global := "baz.jar" // equivalent of jarName := "baz.jar" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment