-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create docs module for deploying adoc files to h-pages
- Loading branch information
1 parent
5d45a9a
commit 97a314b
Showing
17 changed files
with
88 additions
and
15 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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
dependencies { | ||
compile 'org.apache.commons:commons-lang3:3.9' | ||
} | ||
} |
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 |
---|---|---|
|
@@ -6,7 +6,5 @@ allprojects { | |
|
||
subprojects { | ||
apply plugin: 'java' | ||
apply plugin: 'application' | ||
|
||
version = '1.0' | ||
} | ||
} |
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,35 @@ | ||
buildscript { | ||
repositories { | ||
jcenter() | ||
} | ||
dependencies { | ||
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.6.1' | ||
} | ||
} | ||
|
||
plugins { | ||
id 'org.asciidoctor.convert' version '2.3.0' | ||
id 'org.ajoberstar.git-publish' version '2.1.1' | ||
} | ||
|
||
version = '0.02' | ||
|
||
asciidoctorj { | ||
version = '2.1.0' | ||
} | ||
|
||
asciidoctor { | ||
backends 'html5' | ||
sources { | ||
include 'index.adoc' | ||
} | ||
} | ||
|
||
gitPublish { | ||
repoUri = '[email protected]:FatihBozik/ocp8-study-guide.git' | ||
branch = 'gh-pages' | ||
contents { | ||
from 'build/asciidoc/html5' | ||
} | ||
commitMessage = 'Publishing a new version' | ||
} |
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,12 @@ | ||
:encoding: utf-8 | ||
:lang: en | ||
:author: Fatih Bozik | ||
:doctitle: Certified Professional: Java SE 8 Programmer II Notes | ||
|
||
:toc: left | ||
:toclevels: 3 | ||
:sectnums: | ||
:chapter-label: | ||
:revremark: {docdate} | ||
|
||
:title-logo-image: image::logo.svg[align=center, pdfwidth=2.5in] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
include::attributes.adoc[] | ||
|
||
= {doctitle} | ||
|
||
include::chapters/ch1-advanced-class-design.adoc[Advanced Class Design] | ||
|
||
include::chapters/ch2-design-patterns-and-principles.adoc[Design Patterns and Principles] | ||
|
||
include::chapters/ch3-generics-and-collections.adoc[Generics and Collections] | ||
|
||
include::chapters/ch4-functional-programming.adoc[Functional Programming] | ||
|
||
include::chapters/ch5-dates-strings-and-localization.adoc[Dates,Strings,and Localization] | ||
|
||
include::chapters/ch6-exceptions-and-assertions.adoc[Exceptions and Assertions] | ||
|
||
include::chapters/ch7-concurrency.adoc[Concurrency] | ||
|
||
include::chapters/ch8-io.adoc[IO] | ||
|
||
include::chapters/ch9-nio-2.adoc[NIO.2] | ||
|
||
include::chapters/ch10-jdbc.adoc[JDBC] | ||
|
||
|
||
|
||
|
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