Skip to content

Commit

Permalink
initial version of project
Browse files Browse the repository at this point in the history
  • Loading branch information
astrapi69 committed Jan 20, 2019
1 parent 8f9220c commit 7fa0ca8
Show file tree
Hide file tree
Showing 15 changed files with 2,692 additions and 15 deletions.
69 changes: 54 additions & 15 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,23 +1,62 @@
# Compiled class file
##################
# Compiled files #
##################
*.class

# Log file
*.log
##################
# intellij files #
##################
*.iml
!.idea/runConfigurations
.idea/inspectionProfiles
.idea/libraries
.idea/codeStyles
.idea/*.*

# BlueJ files
*.ctxt
#################
# eclipse files #
#################
/.project
/.classpath
/.settings
/.tern-project

# Mobile Tools for Java (J2ME)
.mtj.tmp/
#########################
# maven generated files #
#########################
/target

# Package Files #
*.jar
*.war
*.nar
*.ear
#############
# Zip files #
#############
*.tar
*.zip
*.tar.gz
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
##############
# Logs files #
##############
*.log

#################
# test-ng files #
#################
/test-output

############################
# Binaries generated files #
############################
/bin

################
# gradle files #
################
/build
/.gradle
/gradle
/pom.xml.bak
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# silly-mathgen-tree .travis.yml

language: java

jdk:
- oraclejdk8

addons:
apt:
update: true

notifications:
email:
recipients:
- asterios.raptis@web.de
on_failure: always

after_success:
- mvn clean cobertura:cobertura org.eluder.coveralls:coveralls-maven-plugin:report
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Change log
----------------------

Version -SNAPSHOT
-------------

ADDED:

- initial version of project
- new CHANGELOG.md file created
- new eclipse launch scripts created

Notable links:
[keep a changelog](http://keepachangelog.com/en/1.0.0/) Don’t let your friends dump git logs into changelogs
208 changes: 208 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,208 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>de.alpharogroup</groupId>
<artifactId>mvn-java-parent</artifactId>
<version>4.5</version>
<relativePath></relativePath>
</parent>

<artifactId>silly-math</artifactId>
<version>1-SNAPSHOT</version>

<name>${project.artifactId}</name>

<description>
Project that holds math functions to make your life easier
</description>

<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
<distribution>repo</distribution>
</license>
</licenses>

<url>https://github.com/lightblueseas/${project.artifactId}</url>

<properties>
<!-- JOBJECT-EXTENSIONS version -->
<jobject-extensions.version>2.5</jobject-extensions.version>
<jobject-evaluate.version>${jobject-extensions.version}</jobject-evaluate.version>
<!-- TEST-OBJECTS version -->
<test-objects.version>5.0.1</test-objects.version>
</properties>

<scm>
<connection>scm:git:git:@github.com:lightblueseas/${project.artifactId}.git</connection>
<developerConnection>scm:git:git@github.com:lightblueseas/${project.artifactId}.git</developerConnection>
<url>git:@github.com:lightblueseas/${project.artifactId}.git</url>
</scm>

<ciManagement>
<system>travis-ci</system>
<url>https://travis-ci.org/lightblueseas/${project.artifactId}</url>
</ciManagement>

<issueManagement>
<system>github</system>
<url>https://github.com/lightblueseas/${project.artifactId}/issues</url>
</issueManagement>

<dependencyManagement>

<dependencies>

<!-- JOBJECT-EVALUATE DEPENDENCY -->
<dependency>
<groupId>de.alpharogroup</groupId>
<artifactId>jobject-evaluate</artifactId>
<version>${jobject-evaluate.version}</version>
</dependency>
<!-- TEST-OBJECTS DEPENDENCY -->
<dependency>
<groupId>de.alpharogroup</groupId>
<artifactId>test-objects</artifactId>
<version>${test-objects.version}</version>
</dependency>

</dependencies>

</dependencyManagement>

<dependencies>

<!-- MEANBEAN DEPENDENCY -->
<dependency>
<groupId>org.meanbean</groupId>
<artifactId>meanbean</artifactId>
<scope>test</scope>
</dependency>

<!-- JOBJECT-EVALUATE DEPENDENCY -->
<dependency>
<groupId>de.alpharogroup</groupId>
<artifactId>jobject-evaluate</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>de.alpharogroup</groupId>
<artifactId>test-objects</artifactId>
<scope>test</scope>
</dependency>

</dependencies>

<build>

<resources>

<resource>
<filtering>false</filtering>
<directory>src/main/java</directory>
<includes>
<include>**</include>
</includes>
<excludes>
<exclude>**/*.java</exclude>
<exclude>**/package.html</exclude>
</excludes>
</resource>

<resource>
<filtering>false</filtering>
<directory>src/main/resources</directory>
</resource>

<resource>
<filtering>false</filtering>
<directory>src/site</directory>
</resource>

</resources>

<testResources>

<testResource>
<filtering>false</filtering>
<directory>src/test/java</directory>
<includes>
<include>**</include>
</includes>
<excludes>
<exclude>**/*.java</exclude>
<exclude>**/package.html</exclude>
</excludes>
</testResource>
<testResource>
<filtering>false</filtering>
<directory>src/test/resources</directory>
</testResource>

</testResources>

<pluginManagement>

<plugins>

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<instrumentation>
<excludes>
<!-- abstract classes -->
<!-- annotations -->
<!-- enums -->
<!-- beans -->
<!-- exceptions -->
<!-- interfaces -->
<exclude>de/alpharogroup/tree/ifaces/**/*.class</exclude>
<!-- deprecated classes -->
<!-- constant classes with only constants -->
<!-- explicit abstract classes -->
<!-- explicit annotations -->
<!-- explicit bean classes -->
<!-- explicit constant classes with only constants -->
<!-- explicit delegation classes -->
<!-- explicit deprecated classes -->
<!-- explicit enums -->
<!-- explicit exceptions -->
<!-- explicit interfaces -->
</excludes>
</instrumentation>
</configuration>
<executions>
<execution>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>

</pluginManagement>

<plugins>

<plugin>
<inherited>true</inherited>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>

<plugin>
<inherited>true</inherited>
<artifactId>maven-source-plugin</artifactId>
</plugin>

</plugins>

</build>

</project>
16 changes: 16 additions & 0 deletions src/launch/silly-math clean deploy.launch
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">
<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
<stringAttribute key="M2_GOALS" value="clean deploy"/>
<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
<booleanAttribute key="M2_OFFLINE" value="false"/>
<stringAttribute key="M2_PROFILES" value="oss.sonatype.org-staged-release"/>
<listAttribute key="M2_PROPERTIES"/>
<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
<intAttribute key="M2_THREADS" value="8"/>
<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
<stringAttribute key="M2_USER_SETTINGS" value=""/>
<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${project_loc:silly-math}"/>
</launchConfiguration>
16 changes: 16 additions & 0 deletions src/launch/silly-math clean eclipse eclipse clean install.launch
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">
<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
<stringAttribute key="M2_GOALS" value="eclipse:clean eclipse:eclipse clean install"/>
<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
<booleanAttribute key="M2_OFFLINE" value="false"/>
<stringAttribute key="M2_PROFILES" value=""/>
<listAttribute key="M2_PROPERTIES"/>
<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
<booleanAttribute key="M2_SKIP_TESTS" value="true"/>
<intAttribute key="M2_THREADS" value="8"/>
<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
<stringAttribute key="M2_USER_SETTINGS" value=""/>
<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${project_loc:silly-math}"/>
</launchConfiguration>
16 changes: 16 additions & 0 deletions src/launch/silly-math clean install.launch
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">
<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
<stringAttribute key="M2_GOALS" value="clean install"/>
<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
<booleanAttribute key="M2_OFFLINE" value="false"/>
<stringAttribute key="M2_PROFILES" value=""/>
<listAttribute key="M2_PROPERTIES"/>
<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
<intAttribute key="M2_THREADS" value="8"/>
<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
<stringAttribute key="M2_USER_SETTINGS" value=""/>
<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${project_loc:silly-math}"/>
</launchConfiguration>
16 changes: 16 additions & 0 deletions src/launch/silly-math javadoc.launch
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">
<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
<stringAttribute key="M2_GOALS" value="javadoc:javadoc"/>
<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
<booleanAttribute key="M2_OFFLINE" value="false"/>
<stringAttribute key="M2_PROFILES" value=""/>
<listAttribute key="M2_PROPERTIES"/>
<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
<booleanAttribute key="M2_SKIP_TESTS" value="true"/>
<intAttribute key="M2_THREADS" value="8"/>
<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
<stringAttribute key="M2_USER_SETTINGS" value=""/>
<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${project_loc:silly-math}"/>
</launchConfiguration>
Loading

0 comments on commit 7fa0ca8

Please sign in to comment.