BAEL-2338: add link back to article (#7838)
* BAEL-2246: add link back to article * BAEL-2174: rename core-java-net module to core-java-networking * BAEL-2174: add link back to article * BAEL-2363 BAEL-2337 BAEL-1996 BAEL-2277 add links back to articles * BAEL-2367: add link back to article * BAEL-2335: add link back to article * BAEL-2413: add link back to article * Update README.MD * BAEL-2577: add link back to article * BAEL-2490: add link back to article * BAEL-2471: add link back to article * BAEL-2583: add link back to article * BAEL-2738: add link back to article * BAEL-2711: Add spring-boot-angular module to root pom * BAEL-2544 BAEL-2711 BAEL-2575 BAEL-2657 Add links back to articles * BAEL-2736: Add link back to article * BAEL-2789: Add link back to article * BAEL-2489: add link back to article * BAEL-2840: add link back to article * BAEL-2655: add link back to article * BAEL-2884: add link back to article * BAEL-2985: Fix Spring Boot Apps in spring-data-rest module * BAEL-2898 BAEL-3057 BAEL-3020 add links back to articles * BAEL-3126 BAEL-2463 README * BAEL-2989: add README * BAEL-3149 BAEL-3043 update README * BAEL-2338: update README * BAEL-3149: move code to new module
This commit is contained in:
parent
ca1ffeb74f
commit
b0c356b468
|
@ -0,0 +1,6 @@
|
|||
=========
|
||||
|
||||
## Core Java Lang Syntax Cookbooks and Examples
|
||||
|
||||
### Relevant Articles:
|
||||
- [Java ‘private’ Access Modifier](https://www.baeldung.com/java-private-keyword)
|
|
@ -0,0 +1,26 @@
|
|||
<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-2</artifactId>
|
||||
<version>0.1.0-SNAPSHOT</version>
|
||||
<name>core-java-lang-syntax-2</name>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<parent>
|
||||
<groupId>com.baeldung</groupId>
|
||||
<artifactId>parent-java</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<relativePath>../../parent-java</relativePath>
|
||||
</parent>
|
||||
|
||||
<build>
|
||||
<finalName>core-java-lang-syntax-2</finalName>
|
||||
<resources>
|
||||
<resource>
|
||||
<directory>src/main/resources</directory>
|
||||
<filtering>true</filtering>
|
||||
</resource>
|
||||
</resources>
|
||||
</build>
|
||||
</project>
|
2
pom.xml
2
pom.xml
|
@ -413,6 +413,7 @@
|
|||
<module>core-java-modules/core-java-nio</module>
|
||||
<module>core-java-modules/core-java-security</module>
|
||||
<module>core-java-modules/core-java-lang-syntax</module>
|
||||
<module>core-java-modules/core-java-lang-syntax-2</module>
|
||||
<module>core-java-modules/core-java-lang</module>
|
||||
<module>core-java-modules/core-java-lang-2</module>
|
||||
<module>core-java-modules/core-java-lang-oop</module>
|
||||
|
@ -1151,6 +1152,7 @@
|
|||
<module>core-java-modules/core-java-nio</module>
|
||||
<module>core-java-modules/core-java-security</module>
|
||||
<module>core-java-modules/core-java-lang-syntax</module>
|
||||
<module>core-java-modules/core-java-lang-syntax-2</module>
|
||||
<module>core-java-modules/core-java-lang</module>
|
||||
<module>core-java-modules/core-java-lang-2</module>
|
||||
<module>core-java-modules/core-java-lang-oop</module>
|
||||
|
|
|
@ -4,3 +4,4 @@
|
|||
- [XML Libraries Support in Java](http://www.baeldung.com/java-xml-libraries)
|
||||
- [DOM parsing with Xerces](http://www.baeldung.com/java-xerces-dom-parsing)
|
||||
- [Write an org.w3.dom.Document to a File](https://www.baeldung.com/java-write-xml-document-file)
|
||||
- [Convert XML to HTML in Java](https://www.baeldung.com/java-convert-xml-to-html)
|
||||
|
|
Loading…
Reference in New Issue