Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
*.project
*.classpath
*.iml


.settings/*
.idea/*
target/*

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods

# Logs and databases #
######################
*.log

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
/target/
36 changes: 36 additions & 0 deletions MapSort/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
*.project
*.classpath
*.iml


.settings/*
.idea/*
target/*

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods

# Logs and databases #
######################
*.log

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
/target/
22 changes: 22 additions & 0 deletions MapSort/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<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>

<parent>
<groupId>com.hmkcode</groupId>
<artifactId>java</artifactId>
<version>1.0</version>
</parent>

<artifactId>MapSort</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>MapSort</name>
<url>http://maven.apache.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>
36 changes: 36 additions & 0 deletions castor-xml-object/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
*.project
*.classpath
*.iml


.settings/*
.idea/*
target/*

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods

# Logs and databases #
######################
*.log

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
/target/
55 changes: 30 additions & 25 deletions castor-xml-object/pom.xml
Original file line number Diff line number Diff line change
@@ -1,31 +1,36 @@
<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>
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.hmkcode</groupId>
<artifactId>castor-xml-object</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>com.hmkcode</groupId>
<artifactId>java</artifactId>
<version>1.0</version>
</parent>

<name>castor-xml-object</name>
<url>http://maven.apache.org</url>
<artifactId>castor-xml-object</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<name>castor-xml-object</name>
<url>http://maven.apache.org</url>

<dependencies>

<dependency>
<groupId>org.codehaus.castor</groupId>
<artifactId>castor</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.8.1</version>
</dependency>

</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>

<dependency>
<groupId>org.codehaus.castor</groupId>
<artifactId>castor</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.8.1</version>
</dependency>

</dependencies>
</project>
36 changes: 36 additions & 0 deletions gson-json-java/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
*.project
*.classpath
*.iml


.settings/*
.idea/*
target/*

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods

# Logs and databases #
######################
*.log

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
/target/
41 changes: 23 additions & 18 deletions gson-json-java/pom.xml
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
<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>
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.hmkcode</groupId>
<artifactId>gson-json-java</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>com.hmkcode</groupId>
<artifactId>java</artifactId>
<version>1.0</version>
</parent>

<name>gson-json-java</name>
<url>http://maven.apache.org</url>
<artifactId>gson-json-java</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<name>gson-json-java</name>
<url>http://maven.apache.org</url>

<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.4</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.2.4</version>
</dependency>
</dependencies>
</project>
36 changes: 36 additions & 0 deletions itext-create-pdf/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
*.project
*.classpath
*.iml


.settings/*
.idea/*
target/*

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods

# Logs and databases #
######################
*.log

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
/target/
41 changes: 23 additions & 18 deletions itext-create-pdf/pom.xml
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
<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>
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.hmkcode</groupId>
<artifactId>itext-create-pdf</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>com.hmkcode</groupId>
<artifactId>java</artifactId>
<version>1.0</version>
</parent>

<name>itext-create-pdf</name>
<url>http://maven.apache.org</url>
<artifactId>itext-create-pdf</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<name>itext-create-pdf</name>
<url>http://maven.apache.org</url>

<dependencies>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.4.2</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.4.2</version>
</dependency>
</dependencies>
</project>
Loading