Skip to content

Commit

Permalink
Merge pull request eugenp#7717 from sjmillington/core-java-reflection
Browse files Browse the repository at this point in the history
[BAEL-15994] moved files to core-java-modules/core-java-reflection
  • Loading branch information
lor6 authored Sep 8, 2019
2 parents fa4f496 + 2da48b9 commit 40aef2b
Show file tree
Hide file tree
Showing 23 changed files with 29 additions and 16 deletions.
1 change: 0 additions & 1 deletion core-java-modules/core-java-8/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
- [Finding Min/Max in an Array with Java](http://www.baeldung.com/java-array-min-max)
- [Internationalization and Localization in Java 8](http://www.baeldung.com/java-8-localization)
- [Java Optional – orElse() vs orElseGet()](http://www.baeldung.com/java-optional-or-else-vs-or-else-get)
- [Method Parameter Reflection in Java](http://www.baeldung.com/java-parameter-reflection)
- [Java 8 Unsigned Arithmetic Support](http://www.baeldung.com/java-unsigned-arithmetic)
- [Generalized Target-Type Inference in Java](http://www.baeldung.com/java-generalized-target-type-inference)
- [Overriding System Time for Testing in Java](http://www.baeldung.com/java-override-system-time)
Expand Down
11 changes: 0 additions & 11 deletions core-java-modules/core-java-8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -134,16 +134,6 @@
</resources>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgument>-parameters</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
Expand Down Expand Up @@ -192,7 +182,6 @@
<jmh-generator.version>1.19</jmh-generator.version>
<spring-boot-maven-plugin.version>2.0.4.RELEASE</spring-boot-maven-plugin.version>
<!-- plugins -->
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
<maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version>
</properties>
</project>
5 changes: 1 addition & 4 deletions core-java-modules/core-java-lang/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,10 @@
## Core Java Lang Cookbooks and Examples

### Relevant Articles:
- [Guide to Java Reflection](http://www.baeldung.com/java-reflection)

- [Generate equals() and hashCode() with Eclipse](http://www.baeldung.com/java-eclipse-equals-and-hashcode)
- [Chained Exceptions in Java](http://www.baeldung.com/java-chained-exceptions)
- [Call Methods at Runtime Using Java Reflection](http://www.baeldung.com/java-method-reflection)
- [Iterating Over Enum Values in Java](http://www.baeldung.com/java-enum-iteration)
- [Changing Annotation Parameters At Runtime](http://www.baeldung.com/java-reflection-change-annotation-params)
- [Dynamic Proxies in Java](http://www.baeldung.com/java-dynamic-proxies)
- [Java Double Brace Initialization](http://www.baeldung.com/java-double-brace-initialization)
- [Guide to the Diamond Operator in Java](http://www.baeldung.com/java-diamond-operator)
- [Comparator and Comparable in Java](http://www.baeldung.com/java-comparator-comparable)
Expand Down
5 changes: 5 additions & 0 deletions core-java-modules/core-java-reflection/README.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Relevant Articles

- [Void Type in Java](https://www.baeldung.com/java-void-type)
- [Method Parameter Reflection in Java](http://www.baeldung.com/java-parameter-reflection)
- [Guide to Java Reflection](http://www.baeldung.com/java-reflection)
- [Call Methods at Runtime Using Java Reflection](http://www.baeldung.com/java-method-reflection)
- [Changing Annotation Parameters At Runtime](http://www.baeldung.com/java-reflection-change-annotation-params)
- [Dynamic Proxies in Java](http://www.baeldung.com/java-dynamic-proxies)
23 changes: 23 additions & 0 deletions core-java-modules/core-java-reflection/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,30 @@
</dependency>
</dependencies>

<build>
<finalName>core-java-reflection</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArgument>-parameters</compilerArgument>
</configuration>
</plugin>
</plugins>
</build>

<properties>
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
<assertj-core.version>3.10.0</assertj-core.version>
</properties>
</project>

0 comments on commit 40aef2b

Please sign in to comment.