Initial commit.
This commit is contained in:
commit
aeee81544c
27 changed files with 2651 additions and 0 deletions
24
.gitignore
vendored
Normal file
24
.gitignore
vendored
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
**/.idea/dictionaries
|
||||||
|
**/.idea/gradle.xml
|
||||||
|
**/.idea/libraries
|
||||||
|
**/.idea/tasks.xml
|
||||||
|
**/.idea/workspace.xml
|
||||||
|
*.iws
|
||||||
|
.DS_Store
|
||||||
|
.classpath
|
||||||
|
.gradle
|
||||||
|
.nb-gradle
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
/bin
|
||||||
|
/build
|
||||||
|
/deploy
|
||||||
|
/dist
|
||||||
|
/gen
|
||||||
|
/local.properties
|
||||||
|
/out
|
||||||
|
/proguard-project.txt
|
||||||
|
/project.properties
|
||||||
|
/test-output
|
||||||
|
Thumbs.db
|
||||||
|
ehthumbs.db
|
98
build.gradle
Normal file
98
build.gradle
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
apply plugin: 'java'
|
||||||
|
apply plugin: 'idea'
|
||||||
|
apply plugin: 'maven'
|
||||||
|
|
||||||
|
defaultTasks 'deploy'
|
||||||
|
|
||||||
|
version = '1.0'
|
||||||
|
|
||||||
|
def deployDir = 'deploy'
|
||||||
|
def isRelease = 'release' in gradle.startParameter.taskNames
|
||||||
|
def mavenGroupId = 'net.thauvin.erik'
|
||||||
|
//def buildProps = 'buildnumber.properties'
|
||||||
|
//def buildProp = 'build'
|
||||||
|
|
||||||
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenLocal()
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compile 'org.apache.velocity:velocity:1.7'
|
||||||
|
testCompile 'org.testng:testng:+'
|
||||||
|
}
|
||||||
|
|
||||||
|
test {
|
||||||
|
useTestNG()
|
||||||
|
}
|
||||||
|
|
||||||
|
compileJava {
|
||||||
|
/*
|
||||||
|
doFirst {
|
||||||
|
if (isRelease)
|
||||||
|
{
|
||||||
|
ant.propertyfile(file: buildProps) {
|
||||||
|
entry(key: buildProp,
|
||||||
|
type: 'int',
|
||||||
|
default: '-1',
|
||||||
|
operation: '+')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
jar {
|
||||||
|
/*
|
||||||
|
doFirst {
|
||||||
|
def props = new Properties()
|
||||||
|
file(buildProps).withInputStream { stream -> props.load(stream) }
|
||||||
|
project.version = version + '.' + props.get(buildProp)
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
archiveName = archiveName.toLowerCase()
|
||||||
|
}
|
||||||
|
|
||||||
|
clean {
|
||||||
|
delete deployDir
|
||||||
|
}
|
||||||
|
|
||||||
|
task copyToDeploy(type: Copy) {
|
||||||
|
from(configurations.runtime) {
|
||||||
|
exclude 'servlet-api-*.jar'
|
||||||
|
exclude 'jsp-api-*.jar'
|
||||||
|
}
|
||||||
|
from jar
|
||||||
|
into deployDir
|
||||||
|
}
|
||||||
|
|
||||||
|
task deploy(dependsOn: ['build', 'copyToDeploy']) {
|
||||||
|
description = "Copies all needed files to the ${deployDir} directory."
|
||||||
|
group = "Publishing"
|
||||||
|
outputs.dir deployDir
|
||||||
|
inputs.files copyToDeploy
|
||||||
|
mustRunAfter clean
|
||||||
|
}
|
||||||
|
|
||||||
|
uploadArchives {
|
||||||
|
repositories {
|
||||||
|
mavenDeployer {
|
||||||
|
repository(url: mavenLocal().url)
|
||||||
|
pom.artifactId = rootProject.name.toLowerCase()
|
||||||
|
pom.groupId = mavenGroupId
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
task wrapper(type: Wrapper) {
|
||||||
|
gradleVersion = gradle.gradleVersion
|
||||||
|
}
|
||||||
|
|
||||||
|
task release(dependsOn: ['deploy', 'wrapper', 'uploadArchives']) {
|
||||||
|
group = "Publishing"
|
||||||
|
description = "Releases new version."
|
||||||
|
isRelease = true
|
||||||
|
}
|
24
example/.gitignore
vendored
Normal file
24
example/.gitignore
vendored
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
**/.idea/dictionaries
|
||||||
|
**/.idea/gradle.xml
|
||||||
|
**/.idea/libraries
|
||||||
|
**/.idea/tasks.xml
|
||||||
|
**/.idea/workspace.xml
|
||||||
|
*.iws
|
||||||
|
.DS_Store
|
||||||
|
.classpath
|
||||||
|
.gradle
|
||||||
|
.nb-gradle
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
/bin
|
||||||
|
/build
|
||||||
|
/deploy
|
||||||
|
/dist
|
||||||
|
/gen
|
||||||
|
/local.properties
|
||||||
|
/out
|
||||||
|
/proguard-project.txt
|
||||||
|
/project.properties
|
||||||
|
/test-output
|
||||||
|
Thumbs.db
|
||||||
|
ehthumbs.db
|
94
example/build.gradle
Normal file
94
example/build.gradle
Normal file
|
@ -0,0 +1,94 @@
|
||||||
|
plugins {
|
||||||
|
id "com.ewerk.gradle.plugins.annotation-processor" version "1.0.2"
|
||||||
|
}
|
||||||
|
apply plugin: 'java'
|
||||||
|
apply plugin: 'idea'
|
||||||
|
apply plugin: 'application'
|
||||||
|
|
||||||
|
defaultTasks 'run'
|
||||||
|
|
||||||
|
def isRelease = 'release' in gradle.startParameter.taskNames
|
||||||
|
def deployDir = 'deploy'
|
||||||
|
|
||||||
|
def getVersion(isIncrement = false)
|
||||||
|
{
|
||||||
|
def propsFile = 'version.properties'
|
||||||
|
def majorProp = 'version.major'
|
||||||
|
def minorProp = 'version.minor'
|
||||||
|
def patchProp = 'version.patch'
|
||||||
|
def metaProp = 'version.buildmeta'
|
||||||
|
def preProp = 'version.prerelease'
|
||||||
|
if (isIncrement)
|
||||||
|
{
|
||||||
|
ant.propertyfile(file: propsFile) {
|
||||||
|
entry(key: patchProp,
|
||||||
|
type: 'int',
|
||||||
|
default: '-1',
|
||||||
|
operation: '+')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
def p = new Properties()
|
||||||
|
file(propsFile).withInputStream { stream -> p.load(stream) }
|
||||||
|
def metadata = p.getProperty(metaProp, '')
|
||||||
|
def prerelease = p.getProperty(preProp, '')
|
||||||
|
return (p.getProperty(majorProp, '1') + '.' + p.getProperty(minorProp, '0') + '.' + p.getProperty(patchProp, '0') +
|
||||||
|
(prerelease.length() > 0 ? '-' + prerelease : '') + (metadata.length() > 0 ? '+' + metadata : ''))
|
||||||
|
}
|
||||||
|
|
||||||
|
version = getVersion()
|
||||||
|
|
||||||
|
mainClassName = 'net.thauvin.erik.semver.example.Example'
|
||||||
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenLocal()
|
||||||
|
mavenCentral()
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compile "net.thauvin.erik:semver:+"
|
||||||
|
}
|
||||||
|
|
||||||
|
annotationProcessor {
|
||||||
|
project.version = getVersion(isRelease)
|
||||||
|
library "net.thauvin.erik:semver:+"
|
||||||
|
processor "net.thauvin.erik.semver.VersionProcessor"
|
||||||
|
}
|
||||||
|
|
||||||
|
compileJava {
|
||||||
|
options.compilerArgs << "-proc:none"
|
||||||
|
}
|
||||||
|
|
||||||
|
jar {
|
||||||
|
manifest.attributes('Main-Class': mainClassName)
|
||||||
|
}
|
||||||
|
|
||||||
|
clean {
|
||||||
|
delete deployDir
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
task copyToDeploy(type: Copy) {
|
||||||
|
from jar
|
||||||
|
into deployDir
|
||||||
|
}
|
||||||
|
|
||||||
|
task deploy(dependsOn: ['build', 'copyToDeploy']) {
|
||||||
|
description = "Copies all needed files to the ${deployDir} directory."
|
||||||
|
group = "Publishing"
|
||||||
|
outputs.dir deployDir
|
||||||
|
inputs.files copyToDeploy
|
||||||
|
mustRunAfter clean
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
task release(dependsOn: ['deploy', 'wrapper']) {
|
||||||
|
group = "Publishing"
|
||||||
|
description = "Releases new version."
|
||||||
|
isRelease = true
|
||||||
|
}
|
||||||
|
|
||||||
|
task wrapper(type: Wrapper) {
|
||||||
|
gradleVersion = gradle.gradleVersion
|
||||||
|
}
|
||||||
|
|
229
example/example.iml
Normal file
229
example/example.iml
Normal file
|
@ -0,0 +1,229 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module external.linked.project.id="example" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="3.1.35-beta" type="JAVA_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager" inherit-compiler-output="false">
|
||||||
|
<output url="file://$MODULE_DIR$/build/classes/main" />
|
||||||
|
<output-test url="file://$MODULE_DIR$/build/classes/test" />
|
||||||
|
<exclude-output />
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src/generated/java" isTestSource="false" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src/annotationProcessor/resources" type="java-resource" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src/test/resources" type="java-test-resource" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/build" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
<orderEntry type="library" name="Gradle: net.thauvin.erik:semver:1.0" level="project" />
|
||||||
|
<orderEntry type="library" name="Gradle: org.apache.velocity:velocity:1.7" level="project" />
|
||||||
|
<orderEntry type="library" name="Gradle: commons-collections:commons-collections:3.2.1" level="project" />
|
||||||
|
<orderEntry type="library" name="Gradle: commons-lang:commons-lang:2.4" level="project" />
|
||||||
|
</component>
|
||||||
|
<component name="org.twodividedbyzero.idea.findbugs">
|
||||||
|
<option name="_basePreferences">
|
||||||
|
<map>
|
||||||
|
<entry key="property.analysisEffortLevel" value="default" />
|
||||||
|
<entry key="property.analyzeAfterAutoMake" value="false" />
|
||||||
|
<entry key="property.analyzeAfterCompile" value="false" />
|
||||||
|
<entry key="property.annotationGutterIconEnabled" value="true" />
|
||||||
|
<entry key="property.annotationSuppressWarningsClass" value="edu.umd.cs.findbugs.annotations.SuppressFBWarnings" />
|
||||||
|
<entry key="property.annotationTextRangeMarkupEnabled" value="true" />
|
||||||
|
<entry key="property.exportAsHtml" value="true" />
|
||||||
|
<entry key="property.exportAsXml" value="true" />
|
||||||
|
<entry key="property.exportBaseDir" value="" />
|
||||||
|
<entry key="property.exportCreateArchiveDir" value="false" />
|
||||||
|
<entry key="property.exportOpenBrowser" value="true" />
|
||||||
|
<entry key="property.minPriorityToReport" value="Medium" />
|
||||||
|
<entry key="property.runAnalysisInBackground" value="false" />
|
||||||
|
<entry key="property.showHiddenDetectors" value="false" />
|
||||||
|
<entry key="property.toolWindowToFront" value="true" />
|
||||||
|
</map>
|
||||||
|
</option>
|
||||||
|
<option name="_detectors">
|
||||||
|
<map>
|
||||||
|
<entry key="AppendingToAnObjectOutputStream" value="true" />
|
||||||
|
<entry key="AtomicityProblem" value="true" />
|
||||||
|
<entry key="BadAppletConstructor" value="false" />
|
||||||
|
<entry key="BadResultSetAccess" value="true" />
|
||||||
|
<entry key="BadSyntaxForRegularExpression" value="true" />
|
||||||
|
<entry key="BadUseOfReturnValue" value="true" />
|
||||||
|
<entry key="BadlyOverriddenAdapter" value="true" />
|
||||||
|
<entry key="BooleanReturnNull" value="true" />
|
||||||
|
<entry key="BuildInterproceduralCallGraph" value="false" />
|
||||||
|
<entry key="BuildObligationPolicyDatabase" value="true" />
|
||||||
|
<entry key="BuildStringPassthruGraph" value="true" />
|
||||||
|
<entry key="CallToUnsupportedMethod" value="false" />
|
||||||
|
<entry key="CalledMethods" value="true" />
|
||||||
|
<entry key="CheckCalls" value="false" />
|
||||||
|
<entry key="CheckExpectedWarnings" value="false" />
|
||||||
|
<entry key="CheckImmutableAnnotation" value="true" />
|
||||||
|
<entry key="CheckRelaxingNullnessAnnotation" value="true" />
|
||||||
|
<entry key="CheckTypeQualifiers" value="true" />
|
||||||
|
<entry key="CloneIdiom" value="true" />
|
||||||
|
<entry key="ComparatorIdiom" value="true" />
|
||||||
|
<entry key="ConfusedInheritance" value="true" />
|
||||||
|
<entry key="ConfusionBetweenInheritedAndOuterMethod" value="true" />
|
||||||
|
<entry key="CovariantArrayAssignment" value="false" />
|
||||||
|
<entry key="CrossSiteScripting" value="true" />
|
||||||
|
<entry key="DefaultEncodingDetector" value="true" />
|
||||||
|
<entry key="DoInsideDoPrivileged" value="true" />
|
||||||
|
<entry key="DontCatchIllegalMonitorStateException" value="true" />
|
||||||
|
<entry key="DontIgnoreResultOfPutIfAbsent" value="true" />
|
||||||
|
<entry key="DontUseEnum" value="true" />
|
||||||
|
<entry key="DroppedException" value="true" />
|
||||||
|
<entry key="DumbMethodInvocations" value="true" />
|
||||||
|
<entry key="DumbMethods" value="true" />
|
||||||
|
<entry key="DuplicateBranches" value="true" />
|
||||||
|
<entry key="EmptyZipFileEntry" value="false" />
|
||||||
|
<entry key="EqualsOperandShouldHaveClassCompatibleWithThis" value="true" />
|
||||||
|
<entry key="ExplicitSerialization" value="true" />
|
||||||
|
<entry key="FieldItemSummary" value="true" />
|
||||||
|
<entry key="FinalizerNullsFields" value="true" />
|
||||||
|
<entry key="FindBadCast2" value="true" />
|
||||||
|
<entry key="FindBadForLoop" value="true" />
|
||||||
|
<entry key="FindBugsSummaryStats" value="true" />
|
||||||
|
<entry key="FindCircularDependencies" value="false" />
|
||||||
|
<entry key="FindComparatorProblems" value="true" />
|
||||||
|
<entry key="FindDeadLocalStores" value="true" />
|
||||||
|
<entry key="FindDoubleCheck" value="true" />
|
||||||
|
<entry key="FindEmptySynchronizedBlock" value="true" />
|
||||||
|
<entry key="FindFieldSelfAssignment" value="true" />
|
||||||
|
<entry key="FindFinalizeInvocations" value="true" />
|
||||||
|
<entry key="FindFloatEquality" value="true" />
|
||||||
|
<entry key="FindFloatMath" value="false" />
|
||||||
|
<entry key="FindHEmismatch" value="true" />
|
||||||
|
<entry key="FindInconsistentSync2" value="true" />
|
||||||
|
<entry key="FindJSR166LockMonitorenter" value="true" />
|
||||||
|
<entry key="FindLocalSelfAssignment2" value="true" />
|
||||||
|
<entry key="FindMaskedFields" value="true" />
|
||||||
|
<entry key="FindMismatchedWaitOrNotify" value="true" />
|
||||||
|
<entry key="FindNakedNotify" value="true" />
|
||||||
|
<entry key="FindNoSideEffectMethods" value="true" />
|
||||||
|
<entry key="FindNonSerializableStoreIntoSession" value="false" />
|
||||||
|
<entry key="FindNonSerializableValuePassedToWriteObject" value="false" />
|
||||||
|
<entry key="FindNonShortCircuit" value="true" />
|
||||||
|
<entry key="FindNullDeref" value="true" />
|
||||||
|
<entry key="FindNullDerefsInvolvingNonShortCircuitEvaluation" value="true" />
|
||||||
|
<entry key="FindOpenStream" value="true" />
|
||||||
|
<entry key="FindPuzzlers" value="true" />
|
||||||
|
<entry key="FindRefComparison" value="true" />
|
||||||
|
<entry key="FindReturnRef" value="true" />
|
||||||
|
<entry key="FindRoughConstants" value="true" />
|
||||||
|
<entry key="FindRunInvocations" value="true" />
|
||||||
|
<entry key="FindSelfComparison" value="true" />
|
||||||
|
<entry key="FindSelfComparison2" value="true" />
|
||||||
|
<entry key="FindSleepWithLockHeld" value="true" />
|
||||||
|
<entry key="FindSpinLoop" value="true" />
|
||||||
|
<entry key="FindSqlInjection" value="true" />
|
||||||
|
<entry key="FindTwoLockWait" value="true" />
|
||||||
|
<entry key="FindUncalledPrivateMethods" value="true" />
|
||||||
|
<entry key="FindUnconditionalWait" value="true" />
|
||||||
|
<entry key="FindUninitializedGet" value="true" />
|
||||||
|
<entry key="FindUnrelatedTypesInGenericContainer" value="true" />
|
||||||
|
<entry key="FindUnreleasedLock" value="true" />
|
||||||
|
<entry key="FindUnsatisfiedObligation" value="true" />
|
||||||
|
<entry key="FindUnsyncGet" value="true" />
|
||||||
|
<entry key="FindUseOfNonSerializableValue" value="true" />
|
||||||
|
<entry key="FindUselessControlFlow" value="true" />
|
||||||
|
<entry key="FindUselessObjects" value="true" />
|
||||||
|
<entry key="FormatStringChecker" value="true" />
|
||||||
|
<entry key="FunctionsThatMightBeMistakenForProcedures" value="true" />
|
||||||
|
<entry key="HugeSharedStringConstants" value="true" />
|
||||||
|
<entry key="IDivResultCastToDouble" value="true" />
|
||||||
|
<entry key="IncompatMask" value="true" />
|
||||||
|
<entry key="InconsistentAnnotations" value="true" />
|
||||||
|
<entry key="InefficientIndexOf" value="false" />
|
||||||
|
<entry key="InefficientInitializationInsideLoop" value="false" />
|
||||||
|
<entry key="InefficientMemberAccess" value="false" />
|
||||||
|
<entry key="InefficientToArray" value="false" />
|
||||||
|
<entry key="InfiniteLoop" value="true" />
|
||||||
|
<entry key="InfiniteRecursiveLoop" value="true" />
|
||||||
|
<entry key="InheritanceUnsafeGetResource" value="true" />
|
||||||
|
<entry key="InitializationChain" value="true" />
|
||||||
|
<entry key="InitializeNonnullFieldsInConstructor" value="true" />
|
||||||
|
<entry key="InstantiateStaticClass" value="true" />
|
||||||
|
<entry key="IntCast2LongAsInstant" value="true" />
|
||||||
|
<entry key="InvalidJUnitTest" value="true" />
|
||||||
|
<entry key="IteratorIdioms" value="true" />
|
||||||
|
<entry key="LazyInit" value="true" />
|
||||||
|
<entry key="LoadOfKnownNullValue" value="true" />
|
||||||
|
<entry key="LostLoggerDueToWeakReference" value="true" />
|
||||||
|
<entry key="MethodReturnCheck" value="true" />
|
||||||
|
<entry key="Methods" value="true" />
|
||||||
|
<entry key="MultithreadedInstanceAccess" value="true" />
|
||||||
|
<entry key="MutableEnum" value="true" />
|
||||||
|
<entry key="MutableLock" value="true" />
|
||||||
|
<entry key="MutableStaticFields" value="true" />
|
||||||
|
<entry key="Naming" value="true" />
|
||||||
|
<entry key="Noise" value="false" />
|
||||||
|
<entry key="NoiseNullDeref" value="false" />
|
||||||
|
<entry key="NoteAnnotationRetention" value="true" />
|
||||||
|
<entry key="NoteCheckReturnValueAnnotations" value="true" />
|
||||||
|
<entry key="NoteDirectlyRelevantTypeQualifiers" value="true" />
|
||||||
|
<entry key="NoteJCIPAnnotation" value="true" />
|
||||||
|
<entry key="NoteNonNullAnnotations" value="false" />
|
||||||
|
<entry key="NoteNonnullReturnValues" value="false" />
|
||||||
|
<entry key="NoteSuppressedWarnings" value="true" />
|
||||||
|
<entry key="NoteUnconditionalParamDerefs" value="true" />
|
||||||
|
<entry key="NumberConstructor" value="true" />
|
||||||
|
<entry key="OptionalReturnNull" value="true" />
|
||||||
|
<entry key="OverridingEqualsNotSymmetrical" value="true" />
|
||||||
|
<entry key="PreferZeroLengthArrays" value="true" />
|
||||||
|
<entry key="PublicSemaphores" value="false" />
|
||||||
|
<entry key="QuestionableBooleanAssignment" value="true" />
|
||||||
|
<entry key="ReadOfInstanceFieldInMethodInvokedByConstructorInSuperclass" value="true" />
|
||||||
|
<entry key="ReadReturnShouldBeChecked" value="true" />
|
||||||
|
<entry key="RedundantConditions" value="true" />
|
||||||
|
<entry key="RedundantInterfaces" value="true" />
|
||||||
|
<entry key="ReflectiveClasses" value="true" />
|
||||||
|
<entry key="RepeatedConditionals" value="true" />
|
||||||
|
<entry key="ResolveAllReferences" value="false" />
|
||||||
|
<entry key="RuntimeExceptionCapture" value="true" />
|
||||||
|
<entry key="SerializableIdiom" value="true" />
|
||||||
|
<entry key="StartInConstructor" value="true" />
|
||||||
|
<entry key="StaticCalendarDetector" value="true" />
|
||||||
|
<entry key="StringConcatenation" value="true" />
|
||||||
|
<entry key="SuperfluousInstanceOf" value="true" />
|
||||||
|
<entry key="SuspiciousThreadInterrupted" value="true" />
|
||||||
|
<entry key="SwitchFallthrough" value="true" />
|
||||||
|
<entry key="SynchronizationOnSharedBuiltinConstant" value="true" />
|
||||||
|
<entry key="SynchronizeAndNullCheckField" value="true" />
|
||||||
|
<entry key="SynchronizeOnClassLiteralNotGetClass" value="true" />
|
||||||
|
<entry key="SynchronizingOnContentsOfFieldToProtectField" value="true" />
|
||||||
|
<entry key="TestASM" value="false" />
|
||||||
|
<entry key="TestDataflowAnalysis" value="false" />
|
||||||
|
<entry key="TestingGround" value="false" />
|
||||||
|
<entry key="TestingGround2" value="false" />
|
||||||
|
<entry key="TrainFieldStoreTypes" value="true" />
|
||||||
|
<entry key="TrainLongInstantfParams" value="true" />
|
||||||
|
<entry key="TrainNonNullAnnotations" value="true" />
|
||||||
|
<entry key="TrainUnconditionalDerefParams" value="true" />
|
||||||
|
<entry key="URLProblems" value="true" />
|
||||||
|
<entry key="UncallableMethodOfAnonymousClass" value="true" />
|
||||||
|
<entry key="UnnecessaryMath" value="true" />
|
||||||
|
<entry key="UnreadFields" value="true" />
|
||||||
|
<entry key="UselessSubclassMethod" value="false" />
|
||||||
|
<entry key="VarArgsProblems" value="true" />
|
||||||
|
<entry key="VolatileUsage" value="true" />
|
||||||
|
<entry key="WaitInLoop" value="true" />
|
||||||
|
<entry key="WrongMapIterator" value="true" />
|
||||||
|
<entry key="XMLFactoryBypass" value="true" />
|
||||||
|
</map>
|
||||||
|
</option>
|
||||||
|
<option name="_reportCategories">
|
||||||
|
<map>
|
||||||
|
<entry key="BAD_PRACTICE" value="true" />
|
||||||
|
<entry key="CORRECTNESS" value="true" />
|
||||||
|
<entry key="EXPERIMENTAL" value="true" />
|
||||||
|
<entry key="I18N" value="true" />
|
||||||
|
<entry key="MALICIOUS_CODE" value="true" />
|
||||||
|
<entry key="MT_CORRECTNESS" value="true" />
|
||||||
|
<entry key="PERFORMANCE" value="true" />
|
||||||
|
<entry key="SECURITY" value="true" />
|
||||||
|
<entry key="STYLE" value="true" />
|
||||||
|
</map>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
</module>
|
BIN
example/gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
BIN
example/gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
Binary file not shown.
6
example/gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
6
example/gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#Sun Jan 17 00:40:16 PST 2016
|
||||||
|
distributionBase=GRADLE_USER_HOME
|
||||||
|
distributionPath=wrapper/dists
|
||||||
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
zipStorePath=wrapper/dists
|
||||||
|
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-bin.zip
|
160
example/gradlew
vendored
Normal file
160
example/gradlew
vendored
Normal file
|
@ -0,0 +1,160 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
##
|
||||||
|
## Gradle start up script for UN*X
|
||||||
|
##
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
DEFAULT_JVM_OPTS=""
|
||||||
|
|
||||||
|
APP_NAME="Gradle"
|
||||||
|
APP_BASE_NAME=`basename "$0"`
|
||||||
|
|
||||||
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
|
MAX_FD="maximum"
|
||||||
|
|
||||||
|
warn ( ) {
|
||||||
|
echo "$*"
|
||||||
|
}
|
||||||
|
|
||||||
|
die ( ) {
|
||||||
|
echo
|
||||||
|
echo "$*"
|
||||||
|
echo
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# OS specific support (must be 'true' or 'false').
|
||||||
|
cygwin=false
|
||||||
|
msys=false
|
||||||
|
darwin=false
|
||||||
|
case "`uname`" in
|
||||||
|
CYGWIN* )
|
||||||
|
cygwin=true
|
||||||
|
;;
|
||||||
|
Darwin* )
|
||||||
|
darwin=true
|
||||||
|
;;
|
||||||
|
MINGW* )
|
||||||
|
msys=true
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Attempt to set APP_HOME
|
||||||
|
# Resolve links: $0 may be a link
|
||||||
|
PRG="$0"
|
||||||
|
# Need this for relative symlinks.
|
||||||
|
while [ -h "$PRG" ] ; do
|
||||||
|
ls=`ls -ld "$PRG"`
|
||||||
|
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||||
|
if expr "$link" : '/.*' > /dev/null; then
|
||||||
|
PRG="$link"
|
||||||
|
else
|
||||||
|
PRG=`dirname "$PRG"`"/$link"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
SAVED="`pwd`"
|
||||||
|
cd "`dirname \"$PRG\"`/" >/dev/null
|
||||||
|
APP_HOME="`pwd -P`"
|
||||||
|
cd "$SAVED" >/dev/null
|
||||||
|
|
||||||
|
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||||
|
|
||||||
|
# Determine the Java command to use to start the JVM.
|
||||||
|
if [ -n "$JAVA_HOME" ] ; then
|
||||||
|
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||||
|
# IBM's JDK on AIX uses strange locations for the executables
|
||||||
|
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||||
|
else
|
||||||
|
JAVACMD="$JAVA_HOME/bin/java"
|
||||||
|
fi
|
||||||
|
if [ ! -x "$JAVACMD" ] ; then
|
||||||
|
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
JAVACMD="java"
|
||||||
|
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Increase the maximum file descriptors if we can.
|
||||||
|
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
|
||||||
|
MAX_FD_LIMIT=`ulimit -H -n`
|
||||||
|
if [ $? -eq 0 ] ; then
|
||||||
|
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
|
||||||
|
MAX_FD="$MAX_FD_LIMIT"
|
||||||
|
fi
|
||||||
|
ulimit -n $MAX_FD
|
||||||
|
if [ $? -ne 0 ] ; then
|
||||||
|
warn "Could not set maximum file descriptor limit: $MAX_FD"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Darwin, add options to specify how the application appears in the dock
|
||||||
|
if $darwin; then
|
||||||
|
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Cygwin, switch paths to Windows format before running java
|
||||||
|
if $cygwin ; then
|
||||||
|
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
|
||||||
|
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
|
||||||
|
JAVACMD=`cygpath --unix "$JAVACMD"`
|
||||||
|
|
||||||
|
# We build the pattern for arguments to be converted via cygpath
|
||||||
|
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
|
||||||
|
SEP=""
|
||||||
|
for dir in $ROOTDIRSRAW ; do
|
||||||
|
ROOTDIRS="$ROOTDIRS$SEP$dir"
|
||||||
|
SEP="|"
|
||||||
|
done
|
||||||
|
OURCYGPATTERN="(^($ROOTDIRS))"
|
||||||
|
# Add a user-defined pattern to the cygpath arguments
|
||||||
|
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
|
||||||
|
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
|
||||||
|
fi
|
||||||
|
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||||
|
i=0
|
||||||
|
for arg in "$@" ; do
|
||||||
|
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
|
||||||
|
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
|
||||||
|
|
||||||
|
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
|
||||||
|
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
|
||||||
|
else
|
||||||
|
eval `echo args$i`="\"$arg\""
|
||||||
|
fi
|
||||||
|
i=$((i+1))
|
||||||
|
done
|
||||||
|
case $i in
|
||||||
|
(0) set -- ;;
|
||||||
|
(1) set -- "$args0" ;;
|
||||||
|
(2) set -- "$args0" "$args1" ;;
|
||||||
|
(3) set -- "$args0" "$args1" "$args2" ;;
|
||||||
|
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
|
||||||
|
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
|
||||||
|
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
|
||||||
|
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
|
||||||
|
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
|
||||||
|
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
|
||||||
|
function splitJvmOpts() {
|
||||||
|
JVM_OPTS=("$@")
|
||||||
|
}
|
||||||
|
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
|
||||||
|
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
|
||||||
|
|
||||||
|
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
|
90
example/gradlew.bat
vendored
Normal file
90
example/gradlew.bat
vendored
Normal file
|
@ -0,0 +1,90 @@
|
||||||
|
@if "%DEBUG%" == "" @echo off
|
||||||
|
@rem ##########################################################################
|
||||||
|
@rem
|
||||||
|
@rem Gradle startup script for Windows
|
||||||
|
@rem
|
||||||
|
@rem ##########################################################################
|
||||||
|
|
||||||
|
@rem Set local scope for the variables with windows NT shell
|
||||||
|
if "%OS%"=="Windows_NT" setlocal
|
||||||
|
|
||||||
|
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
set DEFAULT_JVM_OPTS=
|
||||||
|
|
||||||
|
set DIRNAME=%~dp0
|
||||||
|
if "%DIRNAME%" == "" set DIRNAME=.
|
||||||
|
set APP_BASE_NAME=%~n0
|
||||||
|
set APP_HOME=%DIRNAME%
|
||||||
|
|
||||||
|
@rem Find java.exe
|
||||||
|
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||||
|
|
||||||
|
set JAVA_EXE=java.exe
|
||||||
|
%JAVA_EXE% -version >NUL 2>&1
|
||||||
|
if "%ERRORLEVEL%" == "0" goto init
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:findJavaFromJavaHome
|
||||||
|
set JAVA_HOME=%JAVA_HOME:"=%
|
||||||
|
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||||
|
|
||||||
|
if exist "%JAVA_EXE%" goto init
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:init
|
||||||
|
@rem Get command-line arguments, handling Windowz variants
|
||||||
|
|
||||||
|
if not "%OS%" == "Windows_NT" goto win9xME_args
|
||||||
|
if "%@eval[2+2]" == "4" goto 4NT_args
|
||||||
|
|
||||||
|
:win9xME_args
|
||||||
|
@rem Slurp the command line arguments.
|
||||||
|
set CMD_LINE_ARGS=
|
||||||
|
set _SKIP=2
|
||||||
|
|
||||||
|
:win9xME_args_slurp
|
||||||
|
if "x%~1" == "x" goto execute
|
||||||
|
|
||||||
|
set CMD_LINE_ARGS=%*
|
||||||
|
goto execute
|
||||||
|
|
||||||
|
:4NT_args
|
||||||
|
@rem Get arguments from the 4NT Shell from JP Software
|
||||||
|
set CMD_LINE_ARGS=%$
|
||||||
|
|
||||||
|
:execute
|
||||||
|
@rem Setup the command line
|
||||||
|
|
||||||
|
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||||
|
|
||||||
|
@rem Execute Gradle
|
||||||
|
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
|
||||||
|
|
||||||
|
:end
|
||||||
|
@rem End local scope for the variables with windows NT shell
|
||||||
|
if "%ERRORLEVEL%"=="0" goto mainEnd
|
||||||
|
|
||||||
|
:fail
|
||||||
|
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||||
|
rem the _cmd.exe /c_ return code!
|
||||||
|
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||||
|
exit /b 1
|
||||||
|
|
||||||
|
:mainEnd
|
||||||
|
if "%OS%"=="Windows_NT" endlocal
|
||||||
|
|
||||||
|
:omega
|
19
example/settings.gradle
Normal file
19
example/settings.gradle
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/*
|
||||||
|
* This settings file was auto generated by the Gradle buildInit task
|
||||||
|
* by 'erik' at '1/14/16 4:59 PM' with Gradle 2.10
|
||||||
|
*
|
||||||
|
* The settings file is used to specify which projects to include in your build.
|
||||||
|
* In a single project build this file can be empty or even removed.
|
||||||
|
*
|
||||||
|
* Detailed information about configuring a multi-project build in Gradle can be found
|
||||||
|
* in the user guide at https://docs.gradle.org/2.10/userguide/multi_project_builds.html
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
// To declare projects as part of a multi-project build use the 'include' method
|
||||||
|
include 'shared'
|
||||||
|
include 'api'
|
||||||
|
include 'services:webservice'
|
||||||
|
*/
|
||||||
|
|
||||||
|
rootProject.name = 'example'
|
|
@ -0,0 +1,92 @@
|
||||||
|
/*
|
||||||
|
* This file is automatically generated by the Semantic Version Annotation Processor.
|
||||||
|
* Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
||||||
|
*/
|
||||||
|
package net.thauvin.erik.semver.example;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class provides semantic version information.
|
||||||
|
*
|
||||||
|
* @author Semantic Version Annotation Processor
|
||||||
|
*/
|
||||||
|
public final class GeneratedVersion {
|
||||||
|
private final static String buildmeta = "";
|
||||||
|
private final static Date date = new Date(1453146881481L);
|
||||||
|
private final static int major = 3;
|
||||||
|
private final static int minor = 1;
|
||||||
|
private final static int patch = 35;
|
||||||
|
private final static String prerelease = "beta";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the build date.
|
||||||
|
*
|
||||||
|
* @return The build date.
|
||||||
|
*/
|
||||||
|
public static Date getBuildDate() {
|
||||||
|
return date;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the full version.
|
||||||
|
*
|
||||||
|
* @return The full version string.
|
||||||
|
*/
|
||||||
|
public static String getVersion() {
|
||||||
|
return "" + getMajor() + '.' + getMinor() + '.' + getPatch() + getPreRelease() + getBuildMetadata();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the major version.
|
||||||
|
*
|
||||||
|
* @return The major version.
|
||||||
|
*/
|
||||||
|
public static int getMajor() {
|
||||||
|
return major;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the minor version.
|
||||||
|
*
|
||||||
|
* @return The minor version.
|
||||||
|
*/
|
||||||
|
public static int getMinor() {
|
||||||
|
return minor;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the patch version.
|
||||||
|
*
|
||||||
|
* @return The patch version.
|
||||||
|
*/
|
||||||
|
public static int getPatch() {
|
||||||
|
return patch;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the pre-release version.
|
||||||
|
*
|
||||||
|
* @return The pre-release version, if any.
|
||||||
|
*/
|
||||||
|
public static String getPreRelease() {
|
||||||
|
if (prerelease.length() > 0) {
|
||||||
|
return '-' + prerelease;
|
||||||
|
}
|
||||||
|
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the build metadata.
|
||||||
|
*
|
||||||
|
* @return The build metadata, if any.
|
||||||
|
*/
|
||||||
|
public static String getBuildMetadata() {
|
||||||
|
if (buildmeta.length() > 0) {
|
||||||
|
return '+' + buildmeta;
|
||||||
|
}
|
||||||
|
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,57 @@
|
||||||
|
/*
|
||||||
|
* Example.java
|
||||||
|
*
|
||||||
|
* Copyright (c) 2016, Erik C. Thauvin (erik@thauvin.net)
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are
|
||||||
|
* met:
|
||||||
|
*
|
||||||
|
* Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* Neither the name of the author nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||||
|
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||||
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||||
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
package net.thauvin.erik.semver.example;
|
||||||
|
|
||||||
|
import net.thauvin.erik.semver.Version;
|
||||||
|
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>Example</code> class.
|
||||||
|
*
|
||||||
|
* @author <a href="mailto:erik@thauvin.net">Erik C. Thauvin</a>
|
||||||
|
* @created 2016-01-13
|
||||||
|
* @since 1.0
|
||||||
|
*/
|
||||||
|
@Version(properties = "version.properties")
|
||||||
|
public class Example
|
||||||
|
{
|
||||||
|
public static void main(final String... args)
|
||||||
|
{
|
||||||
|
final SimpleDateFormat sdf = new SimpleDateFormat("'Built on' EEE, d MMM yyyy 'at' HH:mm:ss z");
|
||||||
|
|
||||||
|
System.out.println(Example.class.getSimpleName() + ' ' + GeneratedVersion.getVersion());
|
||||||
|
System.out.println(sdf.format(GeneratedVersion.getBuildDate()));
|
||||||
|
}
|
||||||
|
}
|
6
example/version.properties
Normal file
6
example/version.properties
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#Mon, 18 Jan 2016 00:09:19 -0800
|
||||||
|
version.major=3
|
||||||
|
version.minor=1
|
||||||
|
version.patch=35
|
||||||
|
version.buildmeta=
|
||||||
|
version.prerelease=beta
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Normal file
Binary file not shown.
6
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
6
gradle/wrapper/gradle-wrapper.properties
vendored
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#Sat Jan 16 15:10:14 PST 2016
|
||||||
|
distributionBase=GRADLE_USER_HOME
|
||||||
|
distributionPath=wrapper/dists
|
||||||
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
zipStorePath=wrapper/dists
|
||||||
|
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-bin.zip
|
160
gradlew
vendored
Normal file
160
gradlew
vendored
Normal file
|
@ -0,0 +1,160 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
##############################################################################
|
||||||
|
##
|
||||||
|
## Gradle start up script for UN*X
|
||||||
|
##
|
||||||
|
##############################################################################
|
||||||
|
|
||||||
|
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
DEFAULT_JVM_OPTS=""
|
||||||
|
|
||||||
|
APP_NAME="Gradle"
|
||||||
|
APP_BASE_NAME=`basename "$0"`
|
||||||
|
|
||||||
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
|
MAX_FD="maximum"
|
||||||
|
|
||||||
|
warn ( ) {
|
||||||
|
echo "$*"
|
||||||
|
}
|
||||||
|
|
||||||
|
die ( ) {
|
||||||
|
echo
|
||||||
|
echo "$*"
|
||||||
|
echo
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
# OS specific support (must be 'true' or 'false').
|
||||||
|
cygwin=false
|
||||||
|
msys=false
|
||||||
|
darwin=false
|
||||||
|
case "`uname`" in
|
||||||
|
CYGWIN* )
|
||||||
|
cygwin=true
|
||||||
|
;;
|
||||||
|
Darwin* )
|
||||||
|
darwin=true
|
||||||
|
;;
|
||||||
|
MINGW* )
|
||||||
|
msys=true
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
# Attempt to set APP_HOME
|
||||||
|
# Resolve links: $0 may be a link
|
||||||
|
PRG="$0"
|
||||||
|
# Need this for relative symlinks.
|
||||||
|
while [ -h "$PRG" ] ; do
|
||||||
|
ls=`ls -ld "$PRG"`
|
||||||
|
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||||
|
if expr "$link" : '/.*' > /dev/null; then
|
||||||
|
PRG="$link"
|
||||||
|
else
|
||||||
|
PRG=`dirname "$PRG"`"/$link"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
SAVED="`pwd`"
|
||||||
|
cd "`dirname \"$PRG\"`/" >/dev/null
|
||||||
|
APP_HOME="`pwd -P`"
|
||||||
|
cd "$SAVED" >/dev/null
|
||||||
|
|
||||||
|
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
|
||||||
|
|
||||||
|
# Determine the Java command to use to start the JVM.
|
||||||
|
if [ -n "$JAVA_HOME" ] ; then
|
||||||
|
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||||
|
# IBM's JDK on AIX uses strange locations for the executables
|
||||||
|
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||||
|
else
|
||||||
|
JAVACMD="$JAVA_HOME/bin/java"
|
||||||
|
fi
|
||||||
|
if [ ! -x "$JAVACMD" ] ; then
|
||||||
|
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
JAVACMD="java"
|
||||||
|
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
|
||||||
|
Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
location of your Java installation."
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Increase the maximum file descriptors if we can.
|
||||||
|
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
|
||||||
|
MAX_FD_LIMIT=`ulimit -H -n`
|
||||||
|
if [ $? -eq 0 ] ; then
|
||||||
|
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
|
||||||
|
MAX_FD="$MAX_FD_LIMIT"
|
||||||
|
fi
|
||||||
|
ulimit -n $MAX_FD
|
||||||
|
if [ $? -ne 0 ] ; then
|
||||||
|
warn "Could not set maximum file descriptor limit: $MAX_FD"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Darwin, add options to specify how the application appears in the dock
|
||||||
|
if $darwin; then
|
||||||
|
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For Cygwin, switch paths to Windows format before running java
|
||||||
|
if $cygwin ; then
|
||||||
|
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
|
||||||
|
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
|
||||||
|
JAVACMD=`cygpath --unix "$JAVACMD"`
|
||||||
|
|
||||||
|
# We build the pattern for arguments to be converted via cygpath
|
||||||
|
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
|
||||||
|
SEP=""
|
||||||
|
for dir in $ROOTDIRSRAW ; do
|
||||||
|
ROOTDIRS="$ROOTDIRS$SEP$dir"
|
||||||
|
SEP="|"
|
||||||
|
done
|
||||||
|
OURCYGPATTERN="(^($ROOTDIRS))"
|
||||||
|
# Add a user-defined pattern to the cygpath arguments
|
||||||
|
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
|
||||||
|
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
|
||||||
|
fi
|
||||||
|
# Now convert the arguments - kludge to limit ourselves to /bin/sh
|
||||||
|
i=0
|
||||||
|
for arg in "$@" ; do
|
||||||
|
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
|
||||||
|
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
|
||||||
|
|
||||||
|
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
|
||||||
|
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
|
||||||
|
else
|
||||||
|
eval `echo args$i`="\"$arg\""
|
||||||
|
fi
|
||||||
|
i=$((i+1))
|
||||||
|
done
|
||||||
|
case $i in
|
||||||
|
(0) set -- ;;
|
||||||
|
(1) set -- "$args0" ;;
|
||||||
|
(2) set -- "$args0" "$args1" ;;
|
||||||
|
(3) set -- "$args0" "$args1" "$args2" ;;
|
||||||
|
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
|
||||||
|
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
|
||||||
|
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
|
||||||
|
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
|
||||||
|
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
|
||||||
|
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
|
||||||
|
function splitJvmOpts() {
|
||||||
|
JVM_OPTS=("$@")
|
||||||
|
}
|
||||||
|
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
|
||||||
|
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
|
||||||
|
|
||||||
|
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
|
90
gradlew.bat
vendored
Normal file
90
gradlew.bat
vendored
Normal file
|
@ -0,0 +1,90 @@
|
||||||
|
@if "%DEBUG%" == "" @echo off
|
||||||
|
@rem ##########################################################################
|
||||||
|
@rem
|
||||||
|
@rem Gradle startup script for Windows
|
||||||
|
@rem
|
||||||
|
@rem ##########################################################################
|
||||||
|
|
||||||
|
@rem Set local scope for the variables with windows NT shell
|
||||||
|
if "%OS%"=="Windows_NT" setlocal
|
||||||
|
|
||||||
|
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
|
||||||
|
set DEFAULT_JVM_OPTS=
|
||||||
|
|
||||||
|
set DIRNAME=%~dp0
|
||||||
|
if "%DIRNAME%" == "" set DIRNAME=.
|
||||||
|
set APP_BASE_NAME=%~n0
|
||||||
|
set APP_HOME=%DIRNAME%
|
||||||
|
|
||||||
|
@rem Find java.exe
|
||||||
|
if defined JAVA_HOME goto findJavaFromJavaHome
|
||||||
|
|
||||||
|
set JAVA_EXE=java.exe
|
||||||
|
%JAVA_EXE% -version >NUL 2>&1
|
||||||
|
if "%ERRORLEVEL%" == "0" goto init
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:findJavaFromJavaHome
|
||||||
|
set JAVA_HOME=%JAVA_HOME:"=%
|
||||||
|
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
|
||||||
|
|
||||||
|
if exist "%JAVA_EXE%" goto init
|
||||||
|
|
||||||
|
echo.
|
||||||
|
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
|
||||||
|
echo.
|
||||||
|
echo Please set the JAVA_HOME variable in your environment to match the
|
||||||
|
echo location of your Java installation.
|
||||||
|
|
||||||
|
goto fail
|
||||||
|
|
||||||
|
:init
|
||||||
|
@rem Get command-line arguments, handling Windowz variants
|
||||||
|
|
||||||
|
if not "%OS%" == "Windows_NT" goto win9xME_args
|
||||||
|
if "%@eval[2+2]" == "4" goto 4NT_args
|
||||||
|
|
||||||
|
:win9xME_args
|
||||||
|
@rem Slurp the command line arguments.
|
||||||
|
set CMD_LINE_ARGS=
|
||||||
|
set _SKIP=2
|
||||||
|
|
||||||
|
:win9xME_args_slurp
|
||||||
|
if "x%~1" == "x" goto execute
|
||||||
|
|
||||||
|
set CMD_LINE_ARGS=%*
|
||||||
|
goto execute
|
||||||
|
|
||||||
|
:4NT_args
|
||||||
|
@rem Get arguments from the 4NT Shell from JP Software
|
||||||
|
set CMD_LINE_ARGS=%$
|
||||||
|
|
||||||
|
:execute
|
||||||
|
@rem Setup the command line
|
||||||
|
|
||||||
|
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
|
||||||
|
|
||||||
|
@rem Execute Gradle
|
||||||
|
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
|
||||||
|
|
||||||
|
:end
|
||||||
|
@rem End local scope for the variables with windows NT shell
|
||||||
|
if "%ERRORLEVEL%"=="0" goto mainEnd
|
||||||
|
|
||||||
|
:fail
|
||||||
|
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
|
||||||
|
rem the _cmd.exe /c_ return code!
|
||||||
|
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
|
||||||
|
exit /b 1
|
||||||
|
|
||||||
|
:mainEnd
|
||||||
|
if "%OS%"=="Windows_NT" endlocal
|
||||||
|
|
||||||
|
:omega
|
229
semver.iml
Normal file
229
semver.iml
Normal file
|
@ -0,0 +1,229 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module external.linked.project.id="semver" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="1.0" type="JAVA_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager" inherit-compiler-output="false">
|
||||||
|
<output url="file://$MODULE_DIR$/build/classes/main" />
|
||||||
|
<output-test url="file://$MODULE_DIR$/build/classes/test" />
|
||||||
|
<exclude-output />
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src/test/resources" type="java-test-resource" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/build" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
<orderEntry type="library" name="Gradle: org.apache.velocity:velocity:1.7" level="project" />
|
||||||
|
<orderEntry type="library" name="Gradle: commons-collections:commons-collections:3.2.1" level="project" />
|
||||||
|
<orderEntry type="library" name="Gradle: commons-lang:commons-lang:2.4" level="project" />
|
||||||
|
<orderEntry type="library" scope="TEST" name="Gradle: org.testng:testng:6.9.10" level="project" />
|
||||||
|
<orderEntry type="library" scope="TEST" name="Gradle: com.beust:jcommander:1.48" level="project" />
|
||||||
|
<orderEntry type="library" scope="TEST" name="Gradle: org.beanshell:bsh:2.0b4" level="project" />
|
||||||
|
</component>
|
||||||
|
<component name="org.twodividedbyzero.idea.findbugs">
|
||||||
|
<option name="_basePreferences">
|
||||||
|
<map>
|
||||||
|
<entry key="property.analysisEffortLevel" value="default" />
|
||||||
|
<entry key="property.analyzeAfterAutoMake" value="false" />
|
||||||
|
<entry key="property.analyzeAfterCompile" value="false" />
|
||||||
|
<entry key="property.annotationGutterIconEnabled" value="true" />
|
||||||
|
<entry key="property.annotationSuppressWarningsClass" value="edu.umd.cs.findbugs.annotations.SuppressFBWarnings" />
|
||||||
|
<entry key="property.annotationTextRangeMarkupEnabled" value="true" />
|
||||||
|
<entry key="property.exportAsHtml" value="true" />
|
||||||
|
<entry key="property.exportAsXml" value="true" />
|
||||||
|
<entry key="property.exportBaseDir" value="" />
|
||||||
|
<entry key="property.exportCreateArchiveDir" value="false" />
|
||||||
|
<entry key="property.exportOpenBrowser" value="true" />
|
||||||
|
<entry key="property.minPriorityToReport" value="Medium" />
|
||||||
|
<entry key="property.runAnalysisInBackground" value="false" />
|
||||||
|
<entry key="property.showHiddenDetectors" value="false" />
|
||||||
|
<entry key="property.toolWindowToFront" value="true" />
|
||||||
|
</map>
|
||||||
|
</option>
|
||||||
|
<option name="_detectors">
|
||||||
|
<map>
|
||||||
|
<entry key="AppendingToAnObjectOutputStream" value="true" />
|
||||||
|
<entry key="AtomicityProblem" value="true" />
|
||||||
|
<entry key="BadAppletConstructor" value="false" />
|
||||||
|
<entry key="BadResultSetAccess" value="true" />
|
||||||
|
<entry key="BadSyntaxForRegularExpression" value="true" />
|
||||||
|
<entry key="BadUseOfReturnValue" value="true" />
|
||||||
|
<entry key="BadlyOverriddenAdapter" value="true" />
|
||||||
|
<entry key="BooleanReturnNull" value="true" />
|
||||||
|
<entry key="BuildInterproceduralCallGraph" value="false" />
|
||||||
|
<entry key="BuildObligationPolicyDatabase" value="true" />
|
||||||
|
<entry key="BuildStringPassthruGraph" value="true" />
|
||||||
|
<entry key="CallToUnsupportedMethod" value="false" />
|
||||||
|
<entry key="CalledMethods" value="true" />
|
||||||
|
<entry key="CheckCalls" value="false" />
|
||||||
|
<entry key="CheckExpectedWarnings" value="false" />
|
||||||
|
<entry key="CheckImmutableAnnotation" value="true" />
|
||||||
|
<entry key="CheckRelaxingNullnessAnnotation" value="true" />
|
||||||
|
<entry key="CheckTypeQualifiers" value="true" />
|
||||||
|
<entry key="CloneIdiom" value="true" />
|
||||||
|
<entry key="ComparatorIdiom" value="true" />
|
||||||
|
<entry key="ConfusedInheritance" value="true" />
|
||||||
|
<entry key="ConfusionBetweenInheritedAndOuterMethod" value="true" />
|
||||||
|
<entry key="CovariantArrayAssignment" value="false" />
|
||||||
|
<entry key="CrossSiteScripting" value="true" />
|
||||||
|
<entry key="DefaultEncodingDetector" value="true" />
|
||||||
|
<entry key="DoInsideDoPrivileged" value="true" />
|
||||||
|
<entry key="DontCatchIllegalMonitorStateException" value="true" />
|
||||||
|
<entry key="DontIgnoreResultOfPutIfAbsent" value="true" />
|
||||||
|
<entry key="DontUseEnum" value="true" />
|
||||||
|
<entry key="DroppedException" value="true" />
|
||||||
|
<entry key="DumbMethodInvocations" value="true" />
|
||||||
|
<entry key="DumbMethods" value="true" />
|
||||||
|
<entry key="DuplicateBranches" value="true" />
|
||||||
|
<entry key="EmptyZipFileEntry" value="false" />
|
||||||
|
<entry key="EqualsOperandShouldHaveClassCompatibleWithThis" value="true" />
|
||||||
|
<entry key="ExplicitSerialization" value="true" />
|
||||||
|
<entry key="FieldItemSummary" value="true" />
|
||||||
|
<entry key="FinalizerNullsFields" value="true" />
|
||||||
|
<entry key="FindBadCast2" value="true" />
|
||||||
|
<entry key="FindBadForLoop" value="true" />
|
||||||
|
<entry key="FindBugsSummaryStats" value="true" />
|
||||||
|
<entry key="FindCircularDependencies" value="false" />
|
||||||
|
<entry key="FindComparatorProblems" value="true" />
|
||||||
|
<entry key="FindDeadLocalStores" value="true" />
|
||||||
|
<entry key="FindDoubleCheck" value="true" />
|
||||||
|
<entry key="FindEmptySynchronizedBlock" value="true" />
|
||||||
|
<entry key="FindFieldSelfAssignment" value="true" />
|
||||||
|
<entry key="FindFinalizeInvocations" value="true" />
|
||||||
|
<entry key="FindFloatEquality" value="true" />
|
||||||
|
<entry key="FindFloatMath" value="false" />
|
||||||
|
<entry key="FindHEmismatch" value="true" />
|
||||||
|
<entry key="FindInconsistentSync2" value="true" />
|
||||||
|
<entry key="FindJSR166LockMonitorenter" value="true" />
|
||||||
|
<entry key="FindLocalSelfAssignment2" value="true" />
|
||||||
|
<entry key="FindMaskedFields" value="true" />
|
||||||
|
<entry key="FindMismatchedWaitOrNotify" value="true" />
|
||||||
|
<entry key="FindNakedNotify" value="true" />
|
||||||
|
<entry key="FindNoSideEffectMethods" value="true" />
|
||||||
|
<entry key="FindNonSerializableStoreIntoSession" value="false" />
|
||||||
|
<entry key="FindNonSerializableValuePassedToWriteObject" value="false" />
|
||||||
|
<entry key="FindNonShortCircuit" value="true" />
|
||||||
|
<entry key="FindNullDeref" value="true" />
|
||||||
|
<entry key="FindNullDerefsInvolvingNonShortCircuitEvaluation" value="true" />
|
||||||
|
<entry key="FindOpenStream" value="true" />
|
||||||
|
<entry key="FindPuzzlers" value="true" />
|
||||||
|
<entry key="FindRefComparison" value="true" />
|
||||||
|
<entry key="FindReturnRef" value="true" />
|
||||||
|
<entry key="FindRoughConstants" value="true" />
|
||||||
|
<entry key="FindRunInvocations" value="true" />
|
||||||
|
<entry key="FindSelfComparison" value="true" />
|
||||||
|
<entry key="FindSelfComparison2" value="true" />
|
||||||
|
<entry key="FindSleepWithLockHeld" value="true" />
|
||||||
|
<entry key="FindSpinLoop" value="true" />
|
||||||
|
<entry key="FindSqlInjection" value="true" />
|
||||||
|
<entry key="FindTwoLockWait" value="true" />
|
||||||
|
<entry key="FindUncalledPrivateMethods" value="true" />
|
||||||
|
<entry key="FindUnconditionalWait" value="true" />
|
||||||
|
<entry key="FindUninitializedGet" value="true" />
|
||||||
|
<entry key="FindUnrelatedTypesInGenericContainer" value="true" />
|
||||||
|
<entry key="FindUnreleasedLock" value="true" />
|
||||||
|
<entry key="FindUnsatisfiedObligation" value="true" />
|
||||||
|
<entry key="FindUnsyncGet" value="true" />
|
||||||
|
<entry key="FindUseOfNonSerializableValue" value="true" />
|
||||||
|
<entry key="FindUselessControlFlow" value="true" />
|
||||||
|
<entry key="FindUselessObjects" value="true" />
|
||||||
|
<entry key="FormatStringChecker" value="true" />
|
||||||
|
<entry key="FunctionsThatMightBeMistakenForProcedures" value="true" />
|
||||||
|
<entry key="HugeSharedStringConstants" value="true" />
|
||||||
|
<entry key="IDivResultCastToDouble" value="true" />
|
||||||
|
<entry key="IncompatMask" value="true" />
|
||||||
|
<entry key="InconsistentAnnotations" value="true" />
|
||||||
|
<entry key="InefficientIndexOf" value="false" />
|
||||||
|
<entry key="InefficientInitializationInsideLoop" value="false" />
|
||||||
|
<entry key="InefficientMemberAccess" value="false" />
|
||||||
|
<entry key="InefficientToArray" value="false" />
|
||||||
|
<entry key="InfiniteLoop" value="true" />
|
||||||
|
<entry key="InfiniteRecursiveLoop" value="true" />
|
||||||
|
<entry key="InheritanceUnsafeGetResource" value="true" />
|
||||||
|
<entry key="InitializationChain" value="true" />
|
||||||
|
<entry key="InitializeNonnullFieldsInConstructor" value="true" />
|
||||||
|
<entry key="InstantiateStaticClass" value="true" />
|
||||||
|
<entry key="IntCast2LongAsInstant" value="true" />
|
||||||
|
<entry key="InvalidJUnitTest" value="true" />
|
||||||
|
<entry key="IteratorIdioms" value="true" />
|
||||||
|
<entry key="LazyInit" value="true" />
|
||||||
|
<entry key="LoadOfKnownNullValue" value="true" />
|
||||||
|
<entry key="LostLoggerDueToWeakReference" value="true" />
|
||||||
|
<entry key="MethodReturnCheck" value="true" />
|
||||||
|
<entry key="Methods" value="true" />
|
||||||
|
<entry key="MultithreadedInstanceAccess" value="true" />
|
||||||
|
<entry key="MutableEnum" value="true" />
|
||||||
|
<entry key="MutableLock" value="true" />
|
||||||
|
<entry key="MutableStaticFields" value="true" />
|
||||||
|
<entry key="Naming" value="true" />
|
||||||
|
<entry key="Noise" value="false" />
|
||||||
|
<entry key="NoiseNullDeref" value="false" />
|
||||||
|
<entry key="NoteAnnotationRetention" value="true" />
|
||||||
|
<entry key="NoteCheckReturnValueAnnotations" value="true" />
|
||||||
|
<entry key="NoteDirectlyRelevantTypeQualifiers" value="true" />
|
||||||
|
<entry key="NoteJCIPAnnotation" value="true" />
|
||||||
|
<entry key="NoteNonNullAnnotations" value="false" />
|
||||||
|
<entry key="NoteNonnullReturnValues" value="false" />
|
||||||
|
<entry key="NoteSuppressedWarnings" value="true" />
|
||||||
|
<entry key="NoteUnconditionalParamDerefs" value="true" />
|
||||||
|
<entry key="NumberConstructor" value="true" />
|
||||||
|
<entry key="OptionalReturnNull" value="true" />
|
||||||
|
<entry key="OverridingEqualsNotSymmetrical" value="true" />
|
||||||
|
<entry key="PreferZeroLengthArrays" value="true" />
|
||||||
|
<entry key="PublicSemaphores" value="false" />
|
||||||
|
<entry key="QuestionableBooleanAssignment" value="true" />
|
||||||
|
<entry key="ReadOfInstanceFieldInMethodInvokedByConstructorInSuperclass" value="true" />
|
||||||
|
<entry key="ReadReturnShouldBeChecked" value="true" />
|
||||||
|
<entry key="RedundantConditions" value="true" />
|
||||||
|
<entry key="RedundantInterfaces" value="true" />
|
||||||
|
<entry key="ReflectiveClasses" value="true" />
|
||||||
|
<entry key="RepeatedConditionals" value="true" />
|
||||||
|
<entry key="ResolveAllReferences" value="false" />
|
||||||
|
<entry key="RuntimeExceptionCapture" value="true" />
|
||||||
|
<entry key="SerializableIdiom" value="true" />
|
||||||
|
<entry key="StartInConstructor" value="true" />
|
||||||
|
<entry key="StaticCalendarDetector" value="true" />
|
||||||
|
<entry key="StringConcatenation" value="true" />
|
||||||
|
<entry key="SuperfluousInstanceOf" value="true" />
|
||||||
|
<entry key="SuspiciousThreadInterrupted" value="true" />
|
||||||
|
<entry key="SwitchFallthrough" value="true" />
|
||||||
|
<entry key="SynchronizationOnSharedBuiltinConstant" value="true" />
|
||||||
|
<entry key="SynchronizeAndNullCheckField" value="true" />
|
||||||
|
<entry key="SynchronizeOnClassLiteralNotGetClass" value="true" />
|
||||||
|
<entry key="SynchronizingOnContentsOfFieldToProtectField" value="true" />
|
||||||
|
<entry key="TestASM" value="false" />
|
||||||
|
<entry key="TestDataflowAnalysis" value="false" />
|
||||||
|
<entry key="TestingGround" value="false" />
|
||||||
|
<entry key="TestingGround2" value="false" />
|
||||||
|
<entry key="TrainFieldStoreTypes" value="true" />
|
||||||
|
<entry key="TrainLongInstantfParams" value="true" />
|
||||||
|
<entry key="TrainNonNullAnnotations" value="true" />
|
||||||
|
<entry key="TrainUnconditionalDerefParams" value="true" />
|
||||||
|
<entry key="URLProblems" value="true" />
|
||||||
|
<entry key="UncallableMethodOfAnonymousClass" value="true" />
|
||||||
|
<entry key="UnnecessaryMath" value="true" />
|
||||||
|
<entry key="UnreadFields" value="true" />
|
||||||
|
<entry key="UselessSubclassMethod" value="false" />
|
||||||
|
<entry key="VarArgsProblems" value="true" />
|
||||||
|
<entry key="VolatileUsage" value="true" />
|
||||||
|
<entry key="WaitInLoop" value="true" />
|
||||||
|
<entry key="WrongMapIterator" value="true" />
|
||||||
|
<entry key="XMLFactoryBypass" value="true" />
|
||||||
|
</map>
|
||||||
|
</option>
|
||||||
|
<option name="_reportCategories">
|
||||||
|
<map>
|
||||||
|
<entry key="BAD_PRACTICE" value="true" />
|
||||||
|
<entry key="CORRECTNESS" value="true" />
|
||||||
|
<entry key="EXPERIMENTAL" value="true" />
|
||||||
|
<entry key="I18N" value="true" />
|
||||||
|
<entry key="MALICIOUS_CODE" value="true" />
|
||||||
|
<entry key="MT_CORRECTNESS" value="true" />
|
||||||
|
<entry key="PERFORMANCE" value="true" />
|
||||||
|
<entry key="SECURITY" value="true" />
|
||||||
|
<entry key="STYLE" value="true" />
|
||||||
|
</map>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
</module>
|
608
semver.ipr
Normal file
608
semver.ipr
Normal file
|
@ -0,0 +1,608 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ClientPropertiesManager">
|
||||||
|
<properties class="javax.swing.AbstractButton">
|
||||||
|
<property name="hideActionText" class="java.lang.Boolean" />
|
||||||
|
</properties>
|
||||||
|
<properties class="javax.swing.JComponent">
|
||||||
|
<property name="html.disable" class="java.lang.Boolean" />
|
||||||
|
</properties>
|
||||||
|
<properties class="javax.swing.JEditorPane">
|
||||||
|
<property name="JEditorPane.w3cLengthUnits" class="java.lang.Boolean" />
|
||||||
|
<property name="JEditorPane.honorDisplayProperties" class="java.lang.Boolean" />
|
||||||
|
<property name="charset" class="java.lang.String" />
|
||||||
|
</properties>
|
||||||
|
<properties class="javax.swing.JList">
|
||||||
|
<property name="List.isFileList" class="java.lang.Boolean" />
|
||||||
|
</properties>
|
||||||
|
<properties class="javax.swing.JPasswordField">
|
||||||
|
<property name="JPasswordField.cutCopyAllowed" class="java.lang.Boolean" />
|
||||||
|
</properties>
|
||||||
|
<properties class="javax.swing.JSlider">
|
||||||
|
<property name="Slider.paintThumbArrowShape" class="java.lang.Boolean" />
|
||||||
|
<property name="JSlider.isFilled" class="java.lang.Boolean" />
|
||||||
|
</properties>
|
||||||
|
<properties class="javax.swing.JTable">
|
||||||
|
<property name="Table.isFileList" class="java.lang.Boolean" />
|
||||||
|
<property name="JTable.autoStartsEdit" class="java.lang.Boolean" />
|
||||||
|
<property name="terminateEditOnFocusLost" class="java.lang.Boolean" />
|
||||||
|
</properties>
|
||||||
|
<properties class="javax.swing.JToolBar">
|
||||||
|
<property name="JToolBar.isRollover" class="java.lang.Boolean" />
|
||||||
|
</properties>
|
||||||
|
<properties class="javax.swing.JTree">
|
||||||
|
<property name="JTree.lineStyle" class="java.lang.String" />
|
||||||
|
</properties>
|
||||||
|
<properties class="javax.swing.text.JTextComponent">
|
||||||
|
<property name="caretAspectRatio" class="java.lang.Double" />
|
||||||
|
<property name="caretWidth" class="java.lang.Integer" />
|
||||||
|
</properties>
|
||||||
|
</component>
|
||||||
|
<component name="CompilerConfiguration">
|
||||||
|
<option name="DEFAULT_COMPILER" value="Javac" />
|
||||||
|
<resourceExtensions />
|
||||||
|
<wildcardResourcePatterns>
|
||||||
|
<entry name="!?*.java" />
|
||||||
|
<entry name="!?*.form" />
|
||||||
|
<entry name="!?*.class" />
|
||||||
|
<entry name="!?*.groovy" />
|
||||||
|
<entry name="!?*.scala" />
|
||||||
|
<entry name="!?*.flex" />
|
||||||
|
<entry name="!?*.kt" />
|
||||||
|
<entry name="!?*.clj" />
|
||||||
|
<entry name="!?*.aj" />
|
||||||
|
</wildcardResourcePatterns>
|
||||||
|
<annotationProcessing>
|
||||||
|
<profile default="true" name="Default" enabled="false">
|
||||||
|
<processorPath useClasspath="true" />
|
||||||
|
</profile>
|
||||||
|
</annotationProcessing>
|
||||||
|
</component>
|
||||||
|
<component name="CopyrightManager" default="">
|
||||||
|
<copyright>
|
||||||
|
<option name="myName" value="Erik's Copyright Notice" />
|
||||||
|
<option name="notice" value="&#36;file.fileName Copyright (c) &#36;today.year, Erik C. Thauvin (erik@thauvin.net) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." />
|
||||||
|
</copyright>
|
||||||
|
<module2copyright>
|
||||||
|
<element module="Source" copyright="Erik's Copyright Notice" />
|
||||||
|
</module2copyright>
|
||||||
|
<LanguageOptions name="JAVA">
|
||||||
|
<option name="fileTypeOverride" value="3" />
|
||||||
|
<option name="addBlankAfter" value="false" />
|
||||||
|
</LanguageOptions>
|
||||||
|
</component>
|
||||||
|
<component name="DependencyValidationManager">
|
||||||
|
<scope name="Source" pattern="file[example]:src/main/java/*.java||file[semver]:src/main/java/*.java" />
|
||||||
|
</component>
|
||||||
|
<component name="Encoding">
|
||||||
|
<file url="PROJECT" charset="UTF-8" />
|
||||||
|
</component>
|
||||||
|
<component name="EntryPointsManager">
|
||||||
|
<entry_points version="2.0" />
|
||||||
|
</component>
|
||||||
|
<component name="GradleSettings">
|
||||||
|
<option name="linkedExternalProjectsSettings">
|
||||||
|
<GradleProjectSettings>
|
||||||
|
<option name="createEmptyContentRootDirectories" value="true" />
|
||||||
|
<option name="distributionType" value="DEFAULT_WRAPPED" />
|
||||||
|
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||||
|
<option name="gradleHome" value="C:/gradle" />
|
||||||
|
<option name="gradleJvm" value="#JAVA_HOME" />
|
||||||
|
<option name="modules">
|
||||||
|
<set>
|
||||||
|
<option value="$PROJECT_DIR$" />
|
||||||
|
</set>
|
||||||
|
</option>
|
||||||
|
<option name="useAutoImport" value="true" />
|
||||||
|
<option name="myModules">
|
||||||
|
<set>
|
||||||
|
<option value="$PROJECT_DIR$" />
|
||||||
|
</set>
|
||||||
|
</option>
|
||||||
|
</GradleProjectSettings>
|
||||||
|
<GradleProjectSettings>
|
||||||
|
<option name="createEmptyContentRootDirectories" value="true" />
|
||||||
|
<option name="distributionType" value="LOCAL" />
|
||||||
|
<option name="externalProjectPath" value="$PROJECT_DIR$/example" />
|
||||||
|
<option name="gradleHome" value="C:/gradle" />
|
||||||
|
<option name="modules">
|
||||||
|
<set>
|
||||||
|
<option value="$PROJECT_DIR$/example" />
|
||||||
|
</set>
|
||||||
|
</option>
|
||||||
|
<option name="useAutoImport" value="true" />
|
||||||
|
<option name="myModules">
|
||||||
|
<set>
|
||||||
|
<option value="$PROJECT_DIR$/example" />
|
||||||
|
</set>
|
||||||
|
</option>
|
||||||
|
</GradleProjectSettings>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
<component name="InspectionProjectProfileManager">
|
||||||
|
<profile version="1.0">
|
||||||
|
<option name="myName" value="Project Default" />
|
||||||
|
<option name="myLocal" value="true" />
|
||||||
|
<inspection_tool class="FieldMayBeFinal" enabled="true" level="WARNING" enabled_by_default="true" />
|
||||||
|
<inspection_tool class="JavaDoc" enabled="true" level="WARNING" enabled_by_default="true">
|
||||||
|
<option name="TOP_LEVEL_CLASS_OPTIONS">
|
||||||
|
<value>
|
||||||
|
<option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
|
||||||
|
<option name="REQUIRED_TAGS" value="" />
|
||||||
|
</value>
|
||||||
|
</option>
|
||||||
|
<option name="INNER_CLASS_OPTIONS">
|
||||||
|
<value>
|
||||||
|
<option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
|
||||||
|
<option name="REQUIRED_TAGS" value="" />
|
||||||
|
</value>
|
||||||
|
</option>
|
||||||
|
<option name="METHOD_OPTIONS">
|
||||||
|
<value>
|
||||||
|
<option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
|
||||||
|
<option name="REQUIRED_TAGS" value="@return@param@throws or @exception" />
|
||||||
|
</value>
|
||||||
|
</option>
|
||||||
|
<option name="FIELD_OPTIONS">
|
||||||
|
<value>
|
||||||
|
<option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
|
||||||
|
<option name="REQUIRED_TAGS" value="" />
|
||||||
|
</value>
|
||||||
|
</option>
|
||||||
|
<option name="IGNORE_DEPRECATED" value="false" />
|
||||||
|
<option name="IGNORE_JAVADOC_PERIOD" value="true" />
|
||||||
|
<option name="IGNORE_DUPLICATED_THROWS" value="false" />
|
||||||
|
<option name="IGNORE_POINT_TO_ITSELF" value="false" />
|
||||||
|
<option name="myAdditionalJavadocTags" value="created" />
|
||||||
|
</inspection_tool>
|
||||||
|
<inspection_tool class="LocalCanBeFinal" enabled="true" level="WARNING" enabled_by_default="true">
|
||||||
|
<option name="REPORT_VARIABLES" value="true" />
|
||||||
|
<option name="REPORT_PARAMETERS" value="false" />
|
||||||
|
<option name="REPORT_CATCH_PARAMETERS" value="false" />
|
||||||
|
</inspection_tool>
|
||||||
|
<inspection_tool class="LoggerInitializedWithForeignClass" enabled="false" level="WARNING" enabled_by_default="false">
|
||||||
|
<option name="loggerClassName" value="org.apache.log4j.Logger,org.slf4j.LoggerFactory,org.apache.commons.logging.LogFactory,java.util.logging.Logger" />
|
||||||
|
<option name="loggerFactoryMethodName" value="getLogger,getLogger,getLog,getLogger" />
|
||||||
|
</inspection_tool>
|
||||||
|
<inspection_tool class="UnnecessarySemicolon" enabled="false" level="WARNING" enabled_by_default="false" />
|
||||||
|
<inspection_tool class="WeakerAccess" enabled="true" level="WARNING" enabled_by_default="true">
|
||||||
|
<option name="SUGGEST_PACKAGE_LOCAL_FOR_MEMBERS" value="true" />
|
||||||
|
<option name="SUGGEST_PACKAGE_LOCAL_FOR_TOP_CLASSES" value="false" />
|
||||||
|
<option name="SUGGEST_PRIVATE_FOR_INNERS" value="false" />
|
||||||
|
</inspection_tool>
|
||||||
|
</profile>
|
||||||
|
<option name="PROJECT_PROFILE" value="Project Default" />
|
||||||
|
<option name="USE_PROJECT_PROFILE" value="true" />
|
||||||
|
<version value="1.0" />
|
||||||
|
</component>
|
||||||
|
<component name="Palette2">
|
||||||
|
<group name="Swing">
|
||||||
|
<item class="com.intellij.uiDesigner.HSpacer" tooltip-text="Horizontal Spacer" icon="/com/intellij/uiDesigner/icons/hspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
|
||||||
|
</item>
|
||||||
|
<item class="com.intellij.uiDesigner.VSpacer" tooltip-text="Vertical Spacer" icon="/com/intellij/uiDesigner/icons/vspacer.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" />
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JPanel" icon="/com/intellij/uiDesigner/icons/panel.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" />
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JScrollPane" icon="/com/intellij/uiDesigner/icons/scrollPane.png" removable="false" auto-create-binding="false" can-attach-label="true">
|
||||||
|
<default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" />
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JButton" icon="/com/intellij/uiDesigner/icons/button.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" />
|
||||||
|
<initial-values>
|
||||||
|
<property name="text" value="Button" />
|
||||||
|
</initial-values>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JRadioButton" icon="/com/intellij/uiDesigner/icons/radioButton.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
||||||
|
<initial-values>
|
||||||
|
<property name="text" value="RadioButton" />
|
||||||
|
</initial-values>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JCheckBox" icon="/com/intellij/uiDesigner/icons/checkBox.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
|
||||||
|
<initial-values>
|
||||||
|
<property name="text" value="CheckBox" />
|
||||||
|
</initial-values>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JLabel" icon="/com/intellij/uiDesigner/icons/label.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" />
|
||||||
|
<initial-values>
|
||||||
|
<property name="text" value="Label" />
|
||||||
|
</initial-values>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JTextField" icon="/com/intellij/uiDesigner/icons/textField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||||
|
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
||||||
|
<preferred-size width="150" height="-1" />
|
||||||
|
</default-constraints>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||||
|
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
||||||
|
<preferred-size width="150" height="-1" />
|
||||||
|
</default-constraints>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JFormattedTextField" icon="/com/intellij/uiDesigner/icons/formattedTextField.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||||
|
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
|
||||||
|
<preferred-size width="150" height="-1" />
|
||||||
|
</default-constraints>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JTextArea" icon="/com/intellij/uiDesigner/icons/textArea.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||||
|
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
||||||
|
<preferred-size width="150" height="50" />
|
||||||
|
</default-constraints>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JTextPane" icon="/com/intellij/uiDesigner/icons/textPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||||
|
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
||||||
|
<preferred-size width="150" height="50" />
|
||||||
|
</default-constraints>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JEditorPane" icon="/com/intellij/uiDesigner/icons/editorPane.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||||
|
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
||||||
|
<preferred-size width="150" height="50" />
|
||||||
|
</default-constraints>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JComboBox" icon="/com/intellij/uiDesigner/icons/comboBox.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||||
|
<default-constraints vsize-policy="0" hsize-policy="2" anchor="8" fill="1" />
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JTable" icon="/com/intellij/uiDesigner/icons/table.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
||||||
|
<preferred-size width="150" height="50" />
|
||||||
|
</default-constraints>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JList" icon="/com/intellij/uiDesigner/icons/list.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="6" hsize-policy="2" anchor="0" fill="3">
|
||||||
|
<preferred-size width="150" height="50" />
|
||||||
|
</default-constraints>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JTree" icon="/com/intellij/uiDesigner/icons/tree.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3">
|
||||||
|
<preferred-size width="150" height="50" />
|
||||||
|
</default-constraints>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JTabbedPane" icon="/com/intellij/uiDesigner/icons/tabbedPane.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
||||||
|
<preferred-size width="200" height="200" />
|
||||||
|
</default-constraints>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JSplitPane" icon="/com/intellij/uiDesigner/icons/splitPane.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3">
|
||||||
|
<preferred-size width="200" height="200" />
|
||||||
|
</default-constraints>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JSpinner" icon="/com/intellij/uiDesigner/icons/spinner.png" removable="false" auto-create-binding="true" can-attach-label="true">
|
||||||
|
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JSlider" icon="/com/intellij/uiDesigner/icons/slider.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1" />
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JSeparator" icon="/com/intellij/uiDesigner/icons/separator.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="6" hsize-policy="6" anchor="0" fill="3" />
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JProgressBar" icon="/com/intellij/uiDesigner/icons/progressbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1" />
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JToolBar" icon="/com/intellij/uiDesigner/icons/toolbar.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="0" hsize-policy="6" anchor="0" fill="1">
|
||||||
|
<preferred-size width="-1" height="20" />
|
||||||
|
</default-constraints>
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JToolBar$Separator" icon="/com/intellij/uiDesigner/icons/toolbarSeparator.png" removable="false" auto-create-binding="false" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="0" hsize-policy="0" anchor="0" fill="1" />
|
||||||
|
</item>
|
||||||
|
<item class="javax.swing.JScrollBar" icon="/com/intellij/uiDesigner/icons/scrollbar.png" removable="false" auto-create-binding="true" can-attach-label="false">
|
||||||
|
<default-constraints vsize-policy="6" hsize-policy="0" anchor="0" fill="2" />
|
||||||
|
</item>
|
||||||
|
</group>
|
||||||
|
</component>
|
||||||
|
<component name="ProjectCodeStyleSettingsManager">
|
||||||
|
<option name="PER_PROJECT_SETTINGS">
|
||||||
|
<value />
|
||||||
|
</option>
|
||||||
|
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Erik's Code Style" />
|
||||||
|
</component>
|
||||||
|
<component name="ProjectLevelVcsManager" settingsEditedManually="false">
|
||||||
|
<OptionsSetting value="true" id="Add" />
|
||||||
|
<OptionsSetting value="true" id="Remove" />
|
||||||
|
<OptionsSetting value="true" id="Checkout" />
|
||||||
|
<OptionsSetting value="true" id="Update" />
|
||||||
|
<OptionsSetting value="true" id="Status" />
|
||||||
|
<OptionsSetting value="true" id="Edit" />
|
||||||
|
<ConfirmationsSetting value="0" id="Add" />
|
||||||
|
<ConfirmationsSetting value="0" id="Remove" />
|
||||||
|
</component>
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/example/example.iml" filepath="$PROJECT_DIR$/example/example.iml" />
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/semver.iml" filepath="$PROJECT_DIR$/semver.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="false" assert-keyword="true" jdk-15="true" project-jdk-name="1.8.x" project-jdk-type="JavaSDK">
|
||||||
|
<output url="file://$PROJECT_DIR$/build/classes" />
|
||||||
|
</component>
|
||||||
|
<component name="libraryTable">
|
||||||
|
<library name="Gradle: com.beust:jcommander:1.48">
|
||||||
|
<CLASSES>
|
||||||
|
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.beust/jcommander/1.48/bfcb96281ea3b59d626704f74bc6d625ff51cbce/jcommander-1.48.jar!/" />
|
||||||
|
</CLASSES>
|
||||||
|
<JAVADOC />
|
||||||
|
<SOURCES>
|
||||||
|
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/com.beust/jcommander/1.48/6deefcf90f144dfca29d4950c665a592ba029d42/jcommander-1.48-sources.jar!/" />
|
||||||
|
</SOURCES>
|
||||||
|
</library>
|
||||||
|
<library name="Gradle: commons-collections:commons-collections:3.2.1">
|
||||||
|
<CLASSES>
|
||||||
|
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/commons-collections/commons-collections/3.2.1/761ea405b9b37ced573d2df0d1e3a4e0f9edc668/commons-collections-3.2.1.jar!/" />
|
||||||
|
</CLASSES>
|
||||||
|
<JAVADOC />
|
||||||
|
<SOURCES>
|
||||||
|
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/commons-collections/commons-collections/3.2.1/fa095ef874374e5b2a11f8b06c26a5d68c7cb3a4/commons-collections-3.2.1-sources.jar!/" />
|
||||||
|
</SOURCES>
|
||||||
|
</library>
|
||||||
|
<library name="Gradle: commons-lang:commons-lang:2.4">
|
||||||
|
<CLASSES>
|
||||||
|
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/commons-lang/commons-lang/2.4/16313e02a793435009f1e458fa4af5d879f6fb11/commons-lang-2.4.jar!/" />
|
||||||
|
</CLASSES>
|
||||||
|
<JAVADOC />
|
||||||
|
<SOURCES>
|
||||||
|
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/commons-lang/commons-lang/2.4/2b8c4b3035e45520ef42033e823c7d33e4b4402c/commons-lang-2.4-sources.jar!/" />
|
||||||
|
</SOURCES>
|
||||||
|
</library>
|
||||||
|
<library name="Gradle: net.thauvin.erik:semver:1.0">
|
||||||
|
<CLASSES>
|
||||||
|
<root url="jar://$MAVEN_REPOSITORY$/net/thauvin/erik/semver/1.0/semver-1.0.jar!/" />
|
||||||
|
</CLASSES>
|
||||||
|
<JAVADOC />
|
||||||
|
<SOURCES />
|
||||||
|
</library>
|
||||||
|
<library name="Gradle: org.apache.velocity:velocity:1.7">
|
||||||
|
<CLASSES>
|
||||||
|
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.velocity/velocity/1.7/2ceb567b8f3f21118ecdec129fe1271dbc09aa7a/velocity-1.7.jar!/" />
|
||||||
|
</CLASSES>
|
||||||
|
<JAVADOC />
|
||||||
|
<SOURCES>
|
||||||
|
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.apache.velocity/velocity/1.7/eb11eb70171ed64842b2e5216d5904e21ed162ac/velocity-1.7-sources.jar!/" />
|
||||||
|
</SOURCES>
|
||||||
|
</library>
|
||||||
|
<library name="Gradle: org.beanshell:bsh:2.0b4">
|
||||||
|
<CLASSES>
|
||||||
|
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.beanshell/bsh/2.0b4/a05f0a0feefa8d8467ac80e16e7de071489f0d9c/bsh-2.0b4.jar!/" />
|
||||||
|
</CLASSES>
|
||||||
|
<JAVADOC />
|
||||||
|
<SOURCES />
|
||||||
|
</library>
|
||||||
|
<library name="Gradle: org.testng:testng:6.9.10">
|
||||||
|
<CLASSES>
|
||||||
|
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.testng/testng/6.9.10/6feb3e964aeb7097aff30c372aac3ec0f8d87ede/testng-6.9.10.jar!/" />
|
||||||
|
</CLASSES>
|
||||||
|
<JAVADOC />
|
||||||
|
<SOURCES>
|
||||||
|
<root url="jar://$USER_HOME$/.gradle/caches/modules-2/files-2.1/org.testng/testng/6.9.10/11af8613a6b909307c7f2f554249c7b176cb50e6/testng-6.9.10-sources.jar!/" />
|
||||||
|
</SOURCES>
|
||||||
|
</library>
|
||||||
|
</component>
|
||||||
|
<component name="org.twodividedbyzero.idea.findbugs">
|
||||||
|
<option name="annotationTypeSettings">
|
||||||
|
<map>
|
||||||
|
<entry key="ExpPriority" value="-4473925;-12828863;-8355712;WAVE_UNDERSCORE;0;" />
|
||||||
|
<entry key="HighPriority" value="-39836;-12828863;-39836;WAVE_UNDERSCORE;1;" />
|
||||||
|
<entry key="IgnorePriority" value="-4473925;-12828863;-11978414;WAVE_UNDERSCORE;0;" />
|
||||||
|
<entry key="LowPriority" value="-4473925;-12828863;-10316203;BOXED;0;" />
|
||||||
|
<entry key="NormalPriority" value="-4473925;-12828863;-10461184;WAVE_UNDERSCORE;2;" />
|
||||||
|
</map>
|
||||||
|
</option>
|
||||||
|
<option name="_basePreferences">
|
||||||
|
<map>
|
||||||
|
<entry key="property.analysisEffortLevel" value="default" />
|
||||||
|
<entry key="property.analyzeAfterAutoMake" value="false" />
|
||||||
|
<entry key="property.analyzeAfterCompile" value="false" />
|
||||||
|
<entry key="property.annotationGutterIconEnabled" value="true" />
|
||||||
|
<entry key="property.annotationSuppressWarningsClass" value="edu.umd.cs.findbugs.annotations.SuppressFBWarnings" />
|
||||||
|
<entry key="property.annotationTextRangeMarkupEnabled" value="true" />
|
||||||
|
<entry key="property.exportAsHtml" value="true" />
|
||||||
|
<entry key="property.exportAsXml" value="true" />
|
||||||
|
<entry key="property.exportBaseDir" value="" />
|
||||||
|
<entry key="property.exportCreateArchiveDir" value="false" />
|
||||||
|
<entry key="property.exportOpenBrowser" value="true" />
|
||||||
|
<entry key="property.minPriorityToReport" value="Medium" />
|
||||||
|
<entry key="property.runAnalysisInBackground" value="false" />
|
||||||
|
<entry key="property.showHiddenDetectors" value="false" />
|
||||||
|
<entry key="property.toolWindowToFront" value="true" />
|
||||||
|
</map>
|
||||||
|
</option>
|
||||||
|
<option name="_detectors">
|
||||||
|
<map>
|
||||||
|
<entry key="AppendingToAnObjectOutputStream" value="true" />
|
||||||
|
<entry key="AtomicityProblem" value="true" />
|
||||||
|
<entry key="BadAppletConstructor" value="false" />
|
||||||
|
<entry key="BadResultSetAccess" value="true" />
|
||||||
|
<entry key="BadSyntaxForRegularExpression" value="true" />
|
||||||
|
<entry key="BadUseOfReturnValue" value="true" />
|
||||||
|
<entry key="BadlyOverriddenAdapter" value="true" />
|
||||||
|
<entry key="BooleanReturnNull" value="true" />
|
||||||
|
<entry key="BuildInterproceduralCallGraph" value="false" />
|
||||||
|
<entry key="BuildObligationPolicyDatabase" value="true" />
|
||||||
|
<entry key="BuildStringPassthruGraph" value="true" />
|
||||||
|
<entry key="CallToUnsupportedMethod" value="false" />
|
||||||
|
<entry key="CalledMethods" value="true" />
|
||||||
|
<entry key="CheckCalls" value="false" />
|
||||||
|
<entry key="CheckExpectedWarnings" value="false" />
|
||||||
|
<entry key="CheckImmutableAnnotation" value="true" />
|
||||||
|
<entry key="CheckRelaxingNullnessAnnotation" value="true" />
|
||||||
|
<entry key="CheckTypeQualifiers" value="true" />
|
||||||
|
<entry key="CloneIdiom" value="true" />
|
||||||
|
<entry key="ComparatorIdiom" value="true" />
|
||||||
|
<entry key="ConfusedInheritance" value="true" />
|
||||||
|
<entry key="ConfusionBetweenInheritedAndOuterMethod" value="true" />
|
||||||
|
<entry key="CovariantArrayAssignment" value="false" />
|
||||||
|
<entry key="CrossSiteScripting" value="true" />
|
||||||
|
<entry key="DefaultEncodingDetector" value="true" />
|
||||||
|
<entry key="DoInsideDoPrivileged" value="true" />
|
||||||
|
<entry key="DontCatchIllegalMonitorStateException" value="true" />
|
||||||
|
<entry key="DontIgnoreResultOfPutIfAbsent" value="true" />
|
||||||
|
<entry key="DontUseEnum" value="true" />
|
||||||
|
<entry key="DroppedException" value="true" />
|
||||||
|
<entry key="DumbMethodInvocations" value="true" />
|
||||||
|
<entry key="DumbMethods" value="true" />
|
||||||
|
<entry key="DuplicateBranches" value="true" />
|
||||||
|
<entry key="EmptyZipFileEntry" value="false" />
|
||||||
|
<entry key="EqualsOperandShouldHaveClassCompatibleWithThis" value="true" />
|
||||||
|
<entry key="ExplicitSerialization" value="true" />
|
||||||
|
<entry key="FieldItemSummary" value="true" />
|
||||||
|
<entry key="FinalizerNullsFields" value="true" />
|
||||||
|
<entry key="FindBadCast2" value="true" />
|
||||||
|
<entry key="FindBadForLoop" value="true" />
|
||||||
|
<entry key="FindBugsSummaryStats" value="true" />
|
||||||
|
<entry key="FindCircularDependencies" value="false" />
|
||||||
|
<entry key="FindComparatorProblems" value="true" />
|
||||||
|
<entry key="FindDeadLocalStores" value="true" />
|
||||||
|
<entry key="FindDoubleCheck" value="true" />
|
||||||
|
<entry key="FindEmptySynchronizedBlock" value="true" />
|
||||||
|
<entry key="FindFieldSelfAssignment" value="true" />
|
||||||
|
<entry key="FindFinalizeInvocations" value="true" />
|
||||||
|
<entry key="FindFloatEquality" value="true" />
|
||||||
|
<entry key="FindFloatMath" value="false" />
|
||||||
|
<entry key="FindHEmismatch" value="true" />
|
||||||
|
<entry key="FindInconsistentSync2" value="true" />
|
||||||
|
<entry key="FindJSR166LockMonitorenter" value="true" />
|
||||||
|
<entry key="FindLocalSelfAssignment2" value="true" />
|
||||||
|
<entry key="FindMaskedFields" value="true" />
|
||||||
|
<entry key="FindMismatchedWaitOrNotify" value="true" />
|
||||||
|
<entry key="FindNakedNotify" value="true" />
|
||||||
|
<entry key="FindNoSideEffectMethods" value="true" />
|
||||||
|
<entry key="FindNonSerializableStoreIntoSession" value="false" />
|
||||||
|
<entry key="FindNonSerializableValuePassedToWriteObject" value="false" />
|
||||||
|
<entry key="FindNonShortCircuit" value="true" />
|
||||||
|
<entry key="FindNullDeref" value="true" />
|
||||||
|
<entry key="FindNullDerefsInvolvingNonShortCircuitEvaluation" value="true" />
|
||||||
|
<entry key="FindOpenStream" value="true" />
|
||||||
|
<entry key="FindPuzzlers" value="true" />
|
||||||
|
<entry key="FindRefComparison" value="true" />
|
||||||
|
<entry key="FindReturnRef" value="true" />
|
||||||
|
<entry key="FindRoughConstants" value="true" />
|
||||||
|
<entry key="FindRunInvocations" value="true" />
|
||||||
|
<entry key="FindSelfComparison" value="true" />
|
||||||
|
<entry key="FindSelfComparison2" value="true" />
|
||||||
|
<entry key="FindSleepWithLockHeld" value="true" />
|
||||||
|
<entry key="FindSpinLoop" value="true" />
|
||||||
|
<entry key="FindSqlInjection" value="true" />
|
||||||
|
<entry key="FindTwoLockWait" value="true" />
|
||||||
|
<entry key="FindUncalledPrivateMethods" value="true" />
|
||||||
|
<entry key="FindUnconditionalWait" value="true" />
|
||||||
|
<entry key="FindUninitializedGet" value="true" />
|
||||||
|
<entry key="FindUnrelatedTypesInGenericContainer" value="true" />
|
||||||
|
<entry key="FindUnreleasedLock" value="true" />
|
||||||
|
<entry key="FindUnsatisfiedObligation" value="true" />
|
||||||
|
<entry key="FindUnsyncGet" value="true" />
|
||||||
|
<entry key="FindUseOfNonSerializableValue" value="true" />
|
||||||
|
<entry key="FindUselessControlFlow" value="true" />
|
||||||
|
<entry key="FindUselessObjects" value="true" />
|
||||||
|
<entry key="FormatStringChecker" value="true" />
|
||||||
|
<entry key="FunctionsThatMightBeMistakenForProcedures" value="true" />
|
||||||
|
<entry key="HugeSharedStringConstants" value="true" />
|
||||||
|
<entry key="IDivResultCastToDouble" value="true" />
|
||||||
|
<entry key="IncompatMask" value="true" />
|
||||||
|
<entry key="InconsistentAnnotations" value="true" />
|
||||||
|
<entry key="InefficientIndexOf" value="false" />
|
||||||
|
<entry key="InefficientInitializationInsideLoop" value="false" />
|
||||||
|
<entry key="InefficientMemberAccess" value="false" />
|
||||||
|
<entry key="InefficientToArray" value="false" />
|
||||||
|
<entry key="InfiniteLoop" value="true" />
|
||||||
|
<entry key="InfiniteRecursiveLoop" value="true" />
|
||||||
|
<entry key="InheritanceUnsafeGetResource" value="true" />
|
||||||
|
<entry key="InitializationChain" value="true" />
|
||||||
|
<entry key="InitializeNonnullFieldsInConstructor" value="true" />
|
||||||
|
<entry key="InstantiateStaticClass" value="true" />
|
||||||
|
<entry key="IntCast2LongAsInstant" value="true" />
|
||||||
|
<entry key="InvalidJUnitTest" value="true" />
|
||||||
|
<entry key="IteratorIdioms" value="true" />
|
||||||
|
<entry key="LazyInit" value="true" />
|
||||||
|
<entry key="LoadOfKnownNullValue" value="true" />
|
||||||
|
<entry key="LostLoggerDueToWeakReference" value="true" />
|
||||||
|
<entry key="MethodReturnCheck" value="true" />
|
||||||
|
<entry key="Methods" value="true" />
|
||||||
|
<entry key="MultithreadedInstanceAccess" value="true" />
|
||||||
|
<entry key="MutableEnum" value="true" />
|
||||||
|
<entry key="MutableLock" value="true" />
|
||||||
|
<entry key="MutableStaticFields" value="true" />
|
||||||
|
<entry key="Naming" value="true" />
|
||||||
|
<entry key="Noise" value="false" />
|
||||||
|
<entry key="NoiseNullDeref" value="false" />
|
||||||
|
<entry key="NoteAnnotationRetention" value="true" />
|
||||||
|
<entry key="NoteCheckReturnValueAnnotations" value="true" />
|
||||||
|
<entry key="NoteDirectlyRelevantTypeQualifiers" value="true" />
|
||||||
|
<entry key="NoteJCIPAnnotation" value="true" />
|
||||||
|
<entry key="NoteNonNullAnnotations" value="false" />
|
||||||
|
<entry key="NoteNonnullReturnValues" value="false" />
|
||||||
|
<entry key="NoteSuppressedWarnings" value="true" />
|
||||||
|
<entry key="NoteUnconditionalParamDerefs" value="true" />
|
||||||
|
<entry key="NumberConstructor" value="true" />
|
||||||
|
<entry key="OptionalReturnNull" value="true" />
|
||||||
|
<entry key="OverridingEqualsNotSymmetrical" value="true" />
|
||||||
|
<entry key="PreferZeroLengthArrays" value="true" />
|
||||||
|
<entry key="PublicSemaphores" value="false" />
|
||||||
|
<entry key="QuestionableBooleanAssignment" value="true" />
|
||||||
|
<entry key="ReadOfInstanceFieldInMethodInvokedByConstructorInSuperclass" value="true" />
|
||||||
|
<entry key="ReadReturnShouldBeChecked" value="true" />
|
||||||
|
<entry key="RedundantConditions" value="true" />
|
||||||
|
<entry key="RedundantInterfaces" value="true" />
|
||||||
|
<entry key="ReflectiveClasses" value="true" />
|
||||||
|
<entry key="RepeatedConditionals" value="true" />
|
||||||
|
<entry key="ResolveAllReferences" value="false" />
|
||||||
|
<entry key="RuntimeExceptionCapture" value="true" />
|
||||||
|
<entry key="SerializableIdiom" value="true" />
|
||||||
|
<entry key="StartInConstructor" value="true" />
|
||||||
|
<entry key="StaticCalendarDetector" value="true" />
|
||||||
|
<entry key="StringConcatenation" value="true" />
|
||||||
|
<entry key="SuperfluousInstanceOf" value="true" />
|
||||||
|
<entry key="SuspiciousThreadInterrupted" value="true" />
|
||||||
|
<entry key="SwitchFallthrough" value="true" />
|
||||||
|
<entry key="SynchronizationOnSharedBuiltinConstant" value="true" />
|
||||||
|
<entry key="SynchronizeAndNullCheckField" value="true" />
|
||||||
|
<entry key="SynchronizeOnClassLiteralNotGetClass" value="true" />
|
||||||
|
<entry key="SynchronizingOnContentsOfFieldToProtectField" value="true" />
|
||||||
|
<entry key="TestASM" value="false" />
|
||||||
|
<entry key="TestDataflowAnalysis" value="false" />
|
||||||
|
<entry key="TestingGround" value="false" />
|
||||||
|
<entry key="TestingGround2" value="false" />
|
||||||
|
<entry key="TrainFieldStoreTypes" value="true" />
|
||||||
|
<entry key="TrainLongInstantfParams" value="true" />
|
||||||
|
<entry key="TrainNonNullAnnotations" value="true" />
|
||||||
|
<entry key="TrainUnconditionalDerefParams" value="true" />
|
||||||
|
<entry key="URLProblems" value="true" />
|
||||||
|
<entry key="UncallableMethodOfAnonymousClass" value="true" />
|
||||||
|
<entry key="UnnecessaryMath" value="true" />
|
||||||
|
<entry key="UnreadFields" value="true" />
|
||||||
|
<entry key="UselessSubclassMethod" value="false" />
|
||||||
|
<entry key="VarArgsProblems" value="true" />
|
||||||
|
<entry key="VolatileUsage" value="true" />
|
||||||
|
<entry key="WaitInLoop" value="true" />
|
||||||
|
<entry key="WrongMapIterator" value="true" />
|
||||||
|
<entry key="XMLFactoryBypass" value="true" />
|
||||||
|
</map>
|
||||||
|
</option>
|
||||||
|
<option name="_reportCategories">
|
||||||
|
<map>
|
||||||
|
<entry key="BAD_PRACTICE" value="true" />
|
||||||
|
<entry key="CORRECTNESS" value="true" />
|
||||||
|
<entry key="EXPERIMENTAL" value="true" />
|
||||||
|
<entry key="I18N" value="true" />
|
||||||
|
<entry key="MALICIOUS_CODE" value="true" />
|
||||||
|
<entry key="MT_CORRECTNESS" value="true" />
|
||||||
|
<entry key="PERFORMANCE" value="true" />
|
||||||
|
<entry key="SECURITY" value="true" />
|
||||||
|
<entry key="STYLE" value="true" />
|
||||||
|
</map>
|
||||||
|
</option>
|
||||||
|
<option name="_annotationTypeSettings">
|
||||||
|
<map>
|
||||||
|
<entry key="ExpPriority" value="-4473925;-12828863;-8355712;WAVE_UNDERSCORE;0;" />
|
||||||
|
<entry key="HighPriority" value="-39836;-12828863;-39836;WAVE_UNDERSCORE;1;" />
|
||||||
|
<entry key="IgnorePriority" value="-4473925;-12828863;-11978414;WAVE_UNDERSCORE;0;" />
|
||||||
|
<entry key="LowPriority" value="-4473925;-12828863;-10316203;BOXED;0;" />
|
||||||
|
<entry key="NormalPriority" value="-4473925;-12828863;-10461184;WAVE_UNDERSCORE;2;" />
|
||||||
|
</map>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
</project>
|
19
settings.gradle
Normal file
19
settings.gradle
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
/*
|
||||||
|
* This settings file was auto generated by the Gradle buildInit task
|
||||||
|
* by 'erik' at '1/13/16 1:03 PM' with Gradle 2.10
|
||||||
|
*
|
||||||
|
* The settings file is used to specify which projects to include in your build.
|
||||||
|
* In a single project build this file can be empty or even removed.
|
||||||
|
*
|
||||||
|
* Detailed information about configuring a multi-project build in Gradle can be found
|
||||||
|
* in the user guide at https://docs.gradle.org/2.10/userguide/multi_project_builds.html
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
// To declare projects as part of a multi-project build use the 'include' method
|
||||||
|
include 'shared'
|
||||||
|
include 'api'
|
||||||
|
include 'services:webservice'
|
||||||
|
*/
|
||||||
|
|
||||||
|
rootProject.name = 'semver'
|
79
src/main/java/net/thauvin/erik/semver/Constants.java
Normal file
79
src/main/java/net/thauvin/erik/semver/Constants.java
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
/*
|
||||||
|
* Constants.java
|
||||||
|
*
|
||||||
|
* Copyright (c) 2016, Erik C. Thauvin (erik@thauvin.net)
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are
|
||||||
|
* met:
|
||||||
|
*
|
||||||
|
* Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* Neither the name of the author nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||||
|
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||||
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||||
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
package net.thauvin.erik.semver;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>Constants</code> class.
|
||||||
|
*
|
||||||
|
* @author <a href="mailto:erik@thauvin.net">Erik C. Thauvin</a>
|
||||||
|
* @created 2016-01-13
|
||||||
|
* @since 1.0
|
||||||
|
*/
|
||||||
|
public final class Constants
|
||||||
|
{
|
||||||
|
public static final String DEFAULT_CLASS_NAME = "GeneratedVersion";
|
||||||
|
|
||||||
|
public static final int DEFAULT_MAJOR = 1;
|
||||||
|
|
||||||
|
public static final int DEFAULT_MINOR = 0;
|
||||||
|
|
||||||
|
public static final int DEFAULT_PATCH = 0;
|
||||||
|
|
||||||
|
public static final String DEFAULT_TEMPLATE = "version.vm";
|
||||||
|
|
||||||
|
public static final String EMPTY = "";
|
||||||
|
|
||||||
|
public static final String KEY_VERSION_BUILDMETA = "version.buildmeta";
|
||||||
|
|
||||||
|
public static final String KEY_VERSION_MAJOR = "version.major";
|
||||||
|
|
||||||
|
public static final String KEY_VERSION_MINOR = "version.minor";
|
||||||
|
|
||||||
|
public static final String KEY_VERSION_PATCH = "version.patch";
|
||||||
|
|
||||||
|
public static final String KEY_VERSION_PRERELEASE = "version.prerelease";
|
||||||
|
|
||||||
|
public static final String VELOCITY_PROPERTIES = "velocity.properties";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Disables the default constructor.
|
||||||
|
*
|
||||||
|
* @throws UnsupportedOperationException if an error occurred. if the constructor is called.
|
||||||
|
*/
|
||||||
|
private Constants()
|
||||||
|
throws UnsupportedOperationException
|
||||||
|
{
|
||||||
|
throw new UnsupportedOperationException("Illegal constructor call.");
|
||||||
|
}
|
||||||
|
}
|
77
src/main/java/net/thauvin/erik/semver/Version.java
Normal file
77
src/main/java/net/thauvin/erik/semver/Version.java
Normal file
|
@ -0,0 +1,77 @@
|
||||||
|
/*
|
||||||
|
* Version.java
|
||||||
|
*
|
||||||
|
* Copyright (c) 2016, Erik C. Thauvin (erik@thauvin.net)
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are
|
||||||
|
* met:
|
||||||
|
*
|
||||||
|
* Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* Neither the name of the author nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||||
|
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||||
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||||
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
package net.thauvin.erik.semver;
|
||||||
|
|
||||||
|
import java.lang.annotation.ElementType;
|
||||||
|
import java.lang.annotation.Retention;
|
||||||
|
import java.lang.annotation.RetentionPolicy;
|
||||||
|
import java.lang.annotation.Target;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>Version</code> class.
|
||||||
|
*
|
||||||
|
* @author <a href="mailto:erik@thauvin.net">Erik C. Thauvin</a>
|
||||||
|
* @created 2016-01-13
|
||||||
|
* @since 1.0
|
||||||
|
*/
|
||||||
|
@Retention(RetentionPolicy.SOURCE)
|
||||||
|
@Target(ElementType.TYPE)
|
||||||
|
public @interface Version
|
||||||
|
{
|
||||||
|
String buildmeta() default Constants.EMPTY;
|
||||||
|
|
||||||
|
String buildmetaKey() default Constants.KEY_VERSION_BUILDMETA;
|
||||||
|
|
||||||
|
String className() default Constants.DEFAULT_CLASS_NAME;
|
||||||
|
|
||||||
|
int major() default Constants.DEFAULT_MAJOR;
|
||||||
|
|
||||||
|
String majorKey() default Constants.KEY_VERSION_MAJOR;
|
||||||
|
|
||||||
|
int minor() default Constants.DEFAULT_MINOR;
|
||||||
|
|
||||||
|
String minorKey() default Constants.KEY_VERSION_MINOR;
|
||||||
|
|
||||||
|
int patch() default Constants.DEFAULT_PATCH;
|
||||||
|
|
||||||
|
String patchKey() default Constants.KEY_VERSION_PATCH;
|
||||||
|
|
||||||
|
String prerelease() default Constants.EMPTY;
|
||||||
|
|
||||||
|
String prereleaseKey() default Constants.KEY_VERSION_PRERELEASE;
|
||||||
|
|
||||||
|
String properties() default Constants.EMPTY;
|
||||||
|
|
||||||
|
String template() default Constants.DEFAULT_TEMPLATE;
|
||||||
|
}
|
135
src/main/java/net/thauvin/erik/semver/VersionInfo.java
Normal file
135
src/main/java/net/thauvin/erik/semver/VersionInfo.java
Normal file
|
@ -0,0 +1,135 @@
|
||||||
|
/*
|
||||||
|
* VersionInfo.java
|
||||||
|
*
|
||||||
|
* Copyright (c) 2016, Erik C. Thauvin (erik@thauvin.net)
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are
|
||||||
|
* met:
|
||||||
|
*
|
||||||
|
* Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* Neither the name of the author nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||||
|
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||||
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||||
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
package net.thauvin.erik.semver;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>VersionInfo</code> class.
|
||||||
|
*
|
||||||
|
* @author <a href="mailto:erik@thauvin.net">Erik C. Thauvin</a>
|
||||||
|
* @created 2016-01-16
|
||||||
|
* @since 1.0
|
||||||
|
*/
|
||||||
|
public class VersionInfo
|
||||||
|
{
|
||||||
|
private final long epoch = System.currentTimeMillis();
|
||||||
|
|
||||||
|
private String buildmeta;
|
||||||
|
|
||||||
|
private int major;
|
||||||
|
|
||||||
|
private int minor;
|
||||||
|
|
||||||
|
private int patch;
|
||||||
|
|
||||||
|
private String prerelease;
|
||||||
|
|
||||||
|
public VersionInfo()
|
||||||
|
{
|
||||||
|
major = Constants.DEFAULT_MAJOR;
|
||||||
|
minor = Constants.DEFAULT_MINOR;
|
||||||
|
patch = Constants.DEFAULT_PATCH;
|
||||||
|
buildmeta = Constants.EMPTY;
|
||||||
|
prerelease = Constants.EMPTY;
|
||||||
|
}
|
||||||
|
|
||||||
|
public VersionInfo(final Version version)
|
||||||
|
{
|
||||||
|
major = version.major();
|
||||||
|
minor = version.minor();
|
||||||
|
patch = version.patch();
|
||||||
|
buildmeta = version.buildmeta();
|
||||||
|
prerelease = version.prerelease();
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBuildMetadata()
|
||||||
|
{
|
||||||
|
return buildmeta;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBuildMetadata(final String buildmeta)
|
||||||
|
{
|
||||||
|
this.buildmeta = buildmeta;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long getEpoch()
|
||||||
|
{
|
||||||
|
return epoch;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getMajor()
|
||||||
|
{
|
||||||
|
return major;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMajor(final int major)
|
||||||
|
{
|
||||||
|
this.major = major;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getMinor()
|
||||||
|
{
|
||||||
|
return minor;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMinor(final int minor)
|
||||||
|
{
|
||||||
|
this.minor = minor;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getPatch()
|
||||||
|
{
|
||||||
|
return patch;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPatch(final int patch)
|
||||||
|
{
|
||||||
|
this.patch = patch;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPreRelease()
|
||||||
|
{
|
||||||
|
return prerelease;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPreRelease(final String prerelease)
|
||||||
|
{
|
||||||
|
this.prerelease = prerelease;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getVersion()
|
||||||
|
{
|
||||||
|
return "" + major + '.' + minor + '.' + patch + (prerelease.length() > 0 ? '-' + prerelease : "") + (
|
||||||
|
buildmeta.length() > 0 ? '+' + buildmeta : "");
|
||||||
|
}
|
||||||
|
}
|
252
src/main/java/net/thauvin/erik/semver/VersionProcessor.java
Normal file
252
src/main/java/net/thauvin/erik/semver/VersionProcessor.java
Normal file
|
@ -0,0 +1,252 @@
|
||||||
|
/*
|
||||||
|
* VersionProcessor.java
|
||||||
|
*
|
||||||
|
* Copyright (c) 2016, Erik C. Thauvin (erik@thauvin.net)
|
||||||
|
* All rights reserved.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are
|
||||||
|
* met:
|
||||||
|
*
|
||||||
|
* Redistributions of source code must retain the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer.
|
||||||
|
*
|
||||||
|
* Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
* this list of conditions and the following disclaimer in the documentation
|
||||||
|
* and/or other materials provided with the distribution.
|
||||||
|
*
|
||||||
|
* Neither the name of the author nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software without
|
||||||
|
* specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||||
|
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
||||||
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||||
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||||
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
||||||
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||||
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
package net.thauvin.erik.semver;
|
||||||
|
|
||||||
|
import org.apache.velocity.Template;
|
||||||
|
import org.apache.velocity.VelocityContext;
|
||||||
|
import org.apache.velocity.app.VelocityEngine;
|
||||||
|
|
||||||
|
import javax.annotation.processing.*;
|
||||||
|
import javax.lang.model.SourceVersion;
|
||||||
|
import javax.lang.model.element.Element;
|
||||||
|
import javax.lang.model.element.ElementKind;
|
||||||
|
import javax.lang.model.element.PackageElement;
|
||||||
|
import javax.lang.model.element.TypeElement;
|
||||||
|
import javax.tools.Diagnostic;
|
||||||
|
import javax.tools.JavaFileObject;
|
||||||
|
import java.io.*;
|
||||||
|
import java.net.URL;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Properties;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The <code>VersionProcessor</code> class.
|
||||||
|
*
|
||||||
|
* @author <a href="mailto:erik@thauvin.net">Erik C. Thauvin</a>
|
||||||
|
* @created 2016-01-13
|
||||||
|
* @since 1.0
|
||||||
|
*/
|
||||||
|
public class VersionProcessor extends AbstractProcessor
|
||||||
|
{
|
||||||
|
private Filer filer;
|
||||||
|
|
||||||
|
private Messager messager;
|
||||||
|
|
||||||
|
private void error(final String s)
|
||||||
|
{
|
||||||
|
log(Diagnostic.Kind.ERROR, s);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void error(final String s, final Throwable t)
|
||||||
|
{
|
||||||
|
messager.printMessage(Diagnostic.Kind.ERROR, (t != null ? t.toString() : s));
|
||||||
|
}
|
||||||
|
|
||||||
|
private VersionInfo findValues(final Version version)
|
||||||
|
throws IOException
|
||||||
|
{
|
||||||
|
final VersionInfo versionInfo;
|
||||||
|
|
||||||
|
if (version.properties().length() > 0)
|
||||||
|
{
|
||||||
|
versionInfo = new VersionInfo();
|
||||||
|
|
||||||
|
final File propsFile = new File(version.properties());
|
||||||
|
if (propsFile.exists())
|
||||||
|
{
|
||||||
|
note("Found properties: " + propsFile);
|
||||||
|
final Properties p = new Properties();
|
||||||
|
|
||||||
|
try (FileReader reader = new FileReader(propsFile))
|
||||||
|
{
|
||||||
|
p.load(reader);
|
||||||
|
|
||||||
|
versionInfo.setMajor(parseIntProperty(p, version.majorKey(), Constants.DEFAULT_MAJOR));
|
||||||
|
versionInfo.setMinor(parseIntProperty(p, version.minorKey(), Constants.DEFAULT_MINOR));
|
||||||
|
versionInfo.setPatch(parseIntProperty(p, version.patchKey(), Constants.DEFAULT_PATCH));
|
||||||
|
versionInfo.setBuildMetadata(p.getProperty(version.buildmetaKey(), Constants.EMPTY));
|
||||||
|
versionInfo.setPreRelease(p.getProperty(version.prereleaseKey(), Constants.EMPTY));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
error("Could not find: " + propsFile);
|
||||||
|
throw new FileNotFoundException(propsFile + " (The system cannot find the file specified)");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
versionInfo = new VersionInfo(version);
|
||||||
|
}
|
||||||
|
|
||||||
|
return versionInfo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Set<String> getSupportedAnnotationTypes()
|
||||||
|
{
|
||||||
|
final Set<String> result = new HashSet<>();
|
||||||
|
result.add(Version.class.getCanonicalName());
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public SourceVersion getSupportedSourceVersion()
|
||||||
|
{
|
||||||
|
return SourceVersion.RELEASE_8;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public synchronized void init(final ProcessingEnvironment processingEnv)
|
||||||
|
{
|
||||||
|
super.init(processingEnv);
|
||||||
|
filer = processingEnv.getFiler();
|
||||||
|
messager = processingEnv.getMessager();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public boolean process(final Set<? extends TypeElement> annotations, final RoundEnvironment roundEnv)
|
||||||
|
{
|
||||||
|
for (final Element annotatedElement : roundEnv.getElementsAnnotatedWith(Version.class))
|
||||||
|
{
|
||||||
|
final Version version = annotatedElement.getAnnotation(Version.class);
|
||||||
|
if (annotatedElement.getKind() == ElementKind.CLASS)
|
||||||
|
{
|
||||||
|
final Element enclosing = annotatedElement.getEnclosingElement();
|
||||||
|
if (enclosing.getKind() == ElementKind.PACKAGE)
|
||||||
|
{
|
||||||
|
final PackageElement packageElement = (PackageElement) enclosing;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
final VersionInfo versionInfo = findValues(version);
|
||||||
|
note("Found version: " + versionInfo.getVersion());
|
||||||
|
writeTemplate(packageElement.getQualifiedName().toString(),
|
||||||
|
version.className(),
|
||||||
|
versionInfo,
|
||||||
|
version.template());
|
||||||
|
}
|
||||||
|
catch (IOException e)
|
||||||
|
{
|
||||||
|
error("IOException occurred while running annotation processor", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void log(final Diagnostic.Kind kind, final String s)
|
||||||
|
{
|
||||||
|
messager.printMessage(kind, '[' + VersionProcessor.class.getSimpleName() + "] " + s);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void note(final String s)
|
||||||
|
{
|
||||||
|
log(Diagnostic.Kind.NOTE, s);
|
||||||
|
}
|
||||||
|
|
||||||
|
private int parseIntProperty(final Properties p, final String property, final int defaultValue)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return Integer.parseInt(p.getProperty(property, "" + defaultValue));
|
||||||
|
}
|
||||||
|
catch (NumberFormatException ignore)
|
||||||
|
{
|
||||||
|
warn("Invalid property value: " + property);
|
||||||
|
return defaultValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void warn(final String s)
|
||||||
|
{
|
||||||
|
log(Diagnostic.Kind.WARNING, s);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void writeTemplate(final String packageName, final String className, final VersionInfo versionInfo,
|
||||||
|
final String template)
|
||||||
|
throws IOException
|
||||||
|
{
|
||||||
|
final Properties p = new Properties();
|
||||||
|
final URL url = this.getClass().getClassLoader().getResource(Constants.VELOCITY_PROPERTIES);
|
||||||
|
|
||||||
|
if (url != null)
|
||||||
|
{
|
||||||
|
p.load(url.openStream());
|
||||||
|
|
||||||
|
final VelocityEngine ve = new VelocityEngine(p);
|
||||||
|
ve.init();
|
||||||
|
|
||||||
|
final VelocityContext vc = new VelocityContext();
|
||||||
|
vc.put("packageName", packageName);
|
||||||
|
vc.put("className", className);
|
||||||
|
vc.put("buildmeta", versionInfo.getBuildMetadata());
|
||||||
|
vc.put("epoch", versionInfo.getEpoch());
|
||||||
|
vc.put("patch", versionInfo.getPatch());
|
||||||
|
vc.put("major", versionInfo.getMajor());
|
||||||
|
vc.put("minor", versionInfo.getMinor());
|
||||||
|
vc.put("prerelease", versionInfo.getPreRelease());
|
||||||
|
|
||||||
|
final Template vt = ve.getTemplate(template);
|
||||||
|
|
||||||
|
note("Loaded template: " + vt.getName());
|
||||||
|
|
||||||
|
final JavaFileObject jfo = filer.createSourceFile(packageName + '.' + className);
|
||||||
|
try (final Writer writer = jfo.openWriter())
|
||||||
|
{
|
||||||
|
vt.merge(vc, writer);
|
||||||
|
}
|
||||||
|
|
||||||
|
note("Generated source: " + jfo.getName());
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
error("Could not load '" + Constants.VELOCITY_PROPERTIES + "' from jar.");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1 @@
|
||||||
|
net.thauvin.erik.semver.VersionProcessor
|
4
src/main/resources/velocity.properties
Normal file
4
src/main/resources/velocity.properties
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
runtime.log.logsystem.class = org.apache.velocity.runtime.log.SystemLogChute
|
||||||
|
resource.loader = file, class
|
||||||
|
file.resource.loader.class = org.apache.velocity.runtime.resource.loader.FileResourceLoader
|
||||||
|
class.resource.loader.class = org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
|
92
src/main/resources/version.vm
Normal file
92
src/main/resources/version.vm
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
/*
|
||||||
|
* This file is automatically generated by the Semantic Version Annotation Processor.
|
||||||
|
* Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
||||||
|
*/
|
||||||
|
package ${packageName};
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class provides semantic version information.
|
||||||
|
*
|
||||||
|
* @author Semantic Version Annotation Processor
|
||||||
|
*/
|
||||||
|
public final class ${className} {
|
||||||
|
private final static String buildmeta = "${buildmeta}";
|
||||||
|
private final static Date date = new Date(${epoch}L);
|
||||||
|
private final static int major = ${major};
|
||||||
|
private final static int minor = ${minor};
|
||||||
|
private final static int patch = ${patch};
|
||||||
|
private final static String prerelease = "${prerelease}";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the build date.
|
||||||
|
*
|
||||||
|
* @return The build date.
|
||||||
|
*/
|
||||||
|
public static Date getBuildDate() {
|
||||||
|
return date;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the full version.
|
||||||
|
*
|
||||||
|
* @return The full version string.
|
||||||
|
*/
|
||||||
|
public static String getVersion() {
|
||||||
|
return "" + getMajor() + '.' + getMinor() + '.' + getPatch() + getPreRelease() + getBuildMetadata();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the major version.
|
||||||
|
*
|
||||||
|
* @return The major version.
|
||||||
|
*/
|
||||||
|
public static int getMajor() {
|
||||||
|
return major;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the minor version.
|
||||||
|
*
|
||||||
|
* @return The minor version.
|
||||||
|
*/
|
||||||
|
public static int getMinor() {
|
||||||
|
return minor;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the patch version.
|
||||||
|
*
|
||||||
|
* @return The patch version.
|
||||||
|
*/
|
||||||
|
public static int getPatch() {
|
||||||
|
return patch;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the pre-release version.
|
||||||
|
*
|
||||||
|
* @return The pre-release version, if any.
|
||||||
|
*/
|
||||||
|
public static String getPreRelease() {
|
||||||
|
if (prerelease.length() > 0) {
|
||||||
|
return '-' + prerelease;
|
||||||
|
}
|
||||||
|
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the build metadata.
|
||||||
|
*
|
||||||
|
* @return The build metadata, if any.
|
||||||
|
*/
|
||||||
|
public static String getBuildMetadata() {
|
||||||
|
if (buildmeta.length() > 0) {
|
||||||
|
return '+' + buildmeta;
|
||||||
|
}
|
||||||
|
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue