forked from eugenp/tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BAEL-10838] - Created core-java-lang-syntax module
- Loading branch information
Showing
45 changed files
with
99 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
*.class | ||
|
||
0.* | ||
|
||
#folders# | ||
/target | ||
/neoDb* | ||
/data | ||
/src/main/webapp/WEB-INF/classes | ||
*/META-INF/* | ||
.resourceCache | ||
|
||
# Packaged files # | ||
*.jar | ||
*.war | ||
*.ear | ||
|
||
# Files generated by integration tests | ||
backup-pom.xml | ||
/bin/ | ||
/temp | ||
|
||
#IntelliJ specific | ||
.idea/ | ||
*.iml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
========= | ||
|
||
## Core Java Lang Syntax Cookbooks and Examples | ||
|
||
### Relevant Articles: | ||
- [Introduction to Java Generics](http://www.baeldung.com/java-generics) | ||
- [Java Primitive Conversions](http://www.baeldung.com/java-primitive-conversions) | ||
- [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) | ||
- [The Java continue and break Keywords](http://www.baeldung.com/java-continue-and-break) | ||
- [A Guide to Java Initialization](http://www.baeldung.com/java-initialization) | ||
- [A Guide to Java Loops](http://www.baeldung.com/java-loops) | ||
- [Varargs in Java](http://www.baeldung.com/java-varargs) | ||
- [A Guide to Java Enums](http://www.baeldung.com/a-guide-to-java-enums) | ||
- [Infinite Loops in Java](http://www.baeldung.com/infinite-loops-java) | ||
- [Quick Guide to java.lang.System](http://www.baeldung.com/java-lang-system) | ||
- [Java Switch Statement](https://www.baeldung.com/java-switch) | ||
- [The Modulo Operator in Java](https://www.baeldung.com/modulo-java) | ||
- [Ternary Operator In Java](https://www.baeldung.com/java-ternary-operator) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
<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> | ||
<groupId>com.baeldung</groupId> | ||
<artifactId>core-java-lang-syntax</artifactId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
<name>core-java-lang-syntax</name> | ||
|
||
<parent> | ||
<groupId>com.baeldung</groupId> | ||
<artifactId>parent-java</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
<relativePath>../parent-java</relativePath> | ||
</parent> | ||
|
||
<dependencies> | ||
<!-- logging --> | ||
<dependency> | ||
<groupId>log4j</groupId> | ||
<artifactId>log4j</artifactId> | ||
<version>${log4j.version}</version> | ||
</dependency> | ||
<dependency> <!-- needed to bridge to slf4j for projects that use the log4j APIs directly --> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>log4j-over-slf4j</artifactId> | ||
<version>${org.slf4j.version}</version> | ||
</dependency> | ||
<!-- test scoped --> | ||
<dependency> | ||
<groupId>org.assertj</groupId> | ||
<artifactId>assertj-core</artifactId> | ||
<version>${assertj-core.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<finalName>core-java-lang-syntax</finalName> | ||
<resources> | ||
<resource> | ||
<directory>src/main/resources</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
</build> | ||
|
||
<properties> | ||
<!-- testing --> | ||
<assertj-core.version>3.10.0</assertj-core.version> | ||
</properties> | ||
|
||
</project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters