Skip to content
This repository was archived by the owner on Apr 25, 2020. It is now read-only.

Commit 55bf447

Browse files
committed
Refactor big time
1 parent da83e27 commit 55bf447

19 files changed

+481
-523
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ project/build/target/
1212
deploy
1313
release
1414
README.pdf
15+
__gitstats/

pom.xml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
~ Copyright 2011-2012 Christos KK Loverdos
3+
~ Copyright 2011-2014 Christos KK Loverdos
44
~
55
~ Licensed under the Apache License, Version 2.0 (the "License");
66
~ you may not use this file except in compliance with the License.
77
~ You may obtain a copy of the License at
88
~
9-
~ http://www.apache.org/licenses/LICENSE-2.0
9+
~ http://www.apache.org/licenses/LICENSE-2.0
1010
~
1111
~ Unless required by applicable law or agreed to in writing, software
1212
~ distributed under the License is distributed on an "AS IS" BASIS,
@@ -26,7 +26,7 @@
2626

2727
<groupId>com.ckkloverdos</groupId>
2828
<artifactId>typedkey</artifactId>
29-
<version>0.7.1-SNAPSHOT</version>
29+
<version>0.8.0-SNAPSHOT</version>
3030
<packaging>jar</packaging>
3131

3232
<name>Typedkey</name>
@@ -68,7 +68,7 @@
6868
</issueManagement>
6969

7070
<properties>
71-
<scala.version>2.9.1</scala.version>
71+
<scala.version>2.10.3</scala.version>
7272
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
7373
<project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
7474
</properties>
@@ -83,7 +83,7 @@
8383
<dependency>
8484
<groupId>junit</groupId>
8585
<artifactId>junit</artifactId>
86-
<version>4.10</version>
86+
<version>4.11</version>
8787
<scope>test</scope>
8888
</dependency>
8989
</dependencies>
@@ -114,10 +114,10 @@
114114
<configuration>
115115
<rules>
116116
<requireJavaVersion>
117-
<version>[1.6.0,)</version>
117+
<version>[1.7.0,)</version>
118118
</requireJavaVersion>
119119
<requireMavenVersion>
120-
<version>[3.0.3,)</version>
120+
<version>[3.1.1,)</version>
121121
</requireMavenVersion>
122122
</rules>
123123
</configuration>
@@ -128,7 +128,7 @@
128128
<plugin>
129129
<groupId>net.alchim31.maven</groupId>
130130
<artifactId>scala-maven-plugin</artifactId>
131-
<version>3.1.0</version>
131+
<version>3.1.6</version>
132132
<configuration>
133133
<recompileMode>incremental</recompileMode>
134134
<scalaVersion>${scala.version}</scalaVersion>

src/main/scala/com/ckkloverdos/env/Env.scala

-71
This file was deleted.

src/main/scala/com/ckkloverdos/env/EnvBase.scala

-134
This file was deleted.

src/main/scala/com/ckkloverdos/env/EnvHelpers.scala

-97
This file was deleted.

0 commit comments

Comments
 (0)