Skip to content

Commit

Permalink
Merge pull request #26 from anotheria/develop.4x
Browse files Browse the repository at this point in the history
Java 21 / ConfigureMe 4 is now main branch
  • Loading branch information
dvayanu committed Apr 3, 2024
2 parents b83547b + a835e8a commit 7dae88c
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 9 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Expand Up @@ -2,21 +2,21 @@
<parent>
<groupId>net.anotheria</groupId>
<artifactId>parent</artifactId>
<version>2.13</version>
<version>4.0</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>configureme</artifactId>
<name>ConfigureMe</name>
<version>2.6.1-SNAPSHOT</version>
<version>4.0.1-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>8</source>
<target>8</target>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
</plugins>
Expand Down
Expand Up @@ -9,7 +9,6 @@
* Mark config as External config
*
* @author ivanbatura
* @since: 26.09.12
* @version $Id: $Id
*/
@Retention(RetentionPolicy.RUNTIME)
Expand Down
Expand Up @@ -8,7 +8,7 @@
import java.util.Collection;

/**
* A dynamic environment class. This class can be used for any type of environments, for any environment deepth. However, we recommend the usage of more strict Application/LocaleBased Environment if
* A dynamic environment class. This class can be used for any type of environments, for any environment depth. However, we recommend the usage of more strict Application/LocaleBased Environment if
* applicable, since they allow less and can prevent you from absolute environmental chaos. The DynamicEnvironment is the ultima ratio, a class that is capable of everything, but
* requires not testable discipline of the developers.
*
Expand Down
Expand Up @@ -9,7 +9,6 @@
* Include attribute contains link attribute in the another config.
*
* @author ivanbatura
* @since: 26.09.12
* @version $Id: $Id
*/
public class IncludeParsedAttribute extends ParsedAttribute<IncludeValue> {
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/configureme/repository/IncludeValue.java
Expand Up @@ -7,7 +7,6 @@
/**
* Value of a include attribute. Link to the another config with a configurable attribute name.
*
* @since: 26.09.12
* @version $Id: $Id
*/
public class IncludeValue implements Value {
Expand Down
Expand Up @@ -12,7 +12,6 @@
* with requested information.
*
* @author lrosenberg
* @since 13.02.13 15:26
* @version $Id: $Id
*/
@XmlRootElement(name = "reply")
Expand Down

0 comments on commit 7dae88c

Please sign in to comment.