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
<plugin> | |
<artifactId>maven-enforcer-plugin</artifactId> | |
<version>1.0.1</version> | |
<inherited>true</inherited> | |
<executions> | |
<execution> | |
<id>enforce-no-duplicate-classes</id> | |
<goals> | |
<goal>enforce</goal> | |
</goals> |
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
<dependencyManagement> | |
<dependencies> | |
<!-- Manage secondary loggers by claiming they will be provided --> | |
<dependency> | |
<groupId>log4j</groupId> | |
<artifactId>log4j</artifactId> | |
<version>1.2.15</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> |
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
<dependencyManagement> | |
<dependencies> | |
<!-- Manage secondary loggers by claiming they will be provided --> | |
<dependency> | |
<groupId>log4j</groupId> | |
<artifactId>log4j</artifactId> | |
<version>1.2.15</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> |
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
-- Used the Tumblr v1 API because it is light-years simpler http://www.tumblr.com/docs/en/api/v1#api_write | |
-- | |
-- To use this, open it in the AppleScript Editor, change the properties below, | |
-- switch to Mail and select the emails with pics attached that you wish to import to tumblr, | |
-- switch back to the AppleScript Editor and press Run. | |
-- | |
-- NOTE: tumblr limits your photo uploads to 75 per day, so plan accordingly. | |
-- | |
property tumblr_email : "----" |
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
<!-- Use JDK logging for runtime since that's what Glassfish uses. --> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-jdk14</artifactId> | |
<version>1.5.6</version> | |
<scope>runtime</scope> | |
</dependency> | |
<!-- Anything using log4j should defer to slf4j. --> | |
<dependency> |
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
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-enforcer-plugin</artifactId> | |
<version>1.0-alpha-3</version> | |
<executions> | |
<execution> | |
<id>ban-other-loggers</id> | |
<goals> | |
<goal>enforce</goal> | |
</goals> |
NewerOlder