Skip to content

Commit

Permalink
Initial commit for plunger to git
Browse files Browse the repository at this point in the history
  • Loading branch information
galan committed Jan 4, 2013
1 parent d1d8058 commit 503cd27
Show file tree
Hide file tree
Showing 74 changed files with 5,076 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*/target/**/*
*/target/*
14 changes: 14 additions & 0 deletions .plunger
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Host local
Hostname localhost
Port 5445
Username operator
Password operator123
Destination jms.queue.testing

Host somewhere
Hostname my.host.somewhere.com
Port 5445
Username myusername
Password mypassword
Destination jms.queue.defaultdestination

10 changes: 10 additions & 0 deletions plunger-activemq-x/.checkstyle
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>

<fileset-config file-format-version="1.2.0" simple-config="true" sync-formatter="false">
<local-check-config name="seolytics checkstyle checks" location=".settings/checkstyle.xml" type="project" description="">
<additional-data name="protect-config-file" value="true"/>
</local-check-config>
<fileset name="all" enabled="true" check-config-name="seolytics checkstyle checks" local="true">
<file-match-pattern match-pattern="." include-pattern="true"/>
</fileset>
</fileset-config>
36 changes: 36 additions & 0 deletions plunger-activemq-x/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
29 changes: 29 additions & 0 deletions plunger-activemq-x/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>plunger-activemq-x</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>net.sf.eclipsecs.core.CheckstyleBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>net.sf.eclipsecs.core.CheckstyleNature</nature>
</natures>
</projectDescription>
70 changes: 70 additions & 0 deletions plunger-activemq-x/.settings/checkstyle.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.1//EN" "http://www.puppycrawl.com/dtds/configuration_1_1.dtd">

<module name="Checker">
<module name="TreeWalker">
<!-- Naming Conventions -->
<module name="ConstantName">
<property name="format" value="^([A-Z][A-Z0-9]*(_[A-Z0-9]+)*)$" />
</module>
<module name="LocalFinalVariableName" />
<module name="LocalVariableName" />
<module name="MemberName" />
<module name="PackageName" />
<module name="StaticVariableName" />
<module name="TypeName" />
<module name="MethodName"/>

<!-- Imports -->
<module name="IllegalImport">
<property name="illegalPkgs" value="sun, com.sun" />
</module>

<module name="UpperEll" />
<module name="UnusedImports" />
<module name="AvoidStarImport">
<property name="allowStaticMemberImports" value="true"/>
</module>

<!-- Coding -->
<module name="EmptyStatement" />
<module name="HiddenField">
<property name="tokens" value="VARIABLE_DEF" />
</module>

<!-- <module name="MissingSwitchDefault"/> -->
<module name="SimplifyBooleanExpression" />
<module name="SimplifyBooleanReturn" />
<module name="StringLiteralEquality" />
<module name="IllegalThrows" />
<module name="PackageDeclaration" />
<module name="MultipleVariableDeclarations" />

<!-- Documentation -->
<module name="JavadocType" />

<!-- Class Design -->
<module name="FinalClass" />
<!-- <module name="HideUtilityClassConstructor"/> -->

<!-- Misc -->
<!-- <module name="UncommentedMain"/> -->
<module name="Regexp">
<property name="illegalPattern" value="true"/>
<property name="format" value="(System\.(out|err))|(printStackTrace\(\))" />
</module>
<module name="Regexp">
<property name="illegalPattern" value="true"/>
<property name="format" value="(new Long\(|new Float\(|new Integer\(|new Double\()" />
</module>
<module name="Regexp">
<property name="illegalPattern" value="true"/>
<property name="format" value="logger\.(trace|debug|info|warn|error|fatal)" />
</module>
<module name="Regexp">
<property name="illegalPattern" value="true"/>
<property name="format" value="Logger.getLogger\((?!stackTraceElements\[THREAD_TYPE_DEEP\])" />
</module>

</module>
</module>
6 changes: 6 additions & 0 deletions plunger-activemq-x/.settings/org.eclipse.core.resources.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/main/resources=UTF-8
encoding//src/test/java=UTF-8
encoding//src/test/resources=UTF-8
encoding/<project>=UTF-8
Loading

0 comments on commit 503cd27

Please sign in to comment.