Skip to content
This repository was archived by the owner on Jun 5, 2024. It is now read-only.

Commit e483a1e

Browse files
committed
Gradle Project and Package Name Update
1 parent 1609c44 commit e483a1e

20 files changed

Lines changed: 469 additions & 16 deletions

.gitignore

Lines changed: 140 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,96 @@
1-
# Idea Project
2-
*.iml
3-
.idea/*
41

2+
# Created by https://www.gitignore.io/api/java,gradle,windows,intellij
3+
# Edit at https://www.gitignore.io/?templates=java,gradle,windows,intellij
4+
5+
### Intellij ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
# User-specific stuff
10+
.idea/**/workspace.xml
11+
.idea/**/tasks.xml
12+
.idea/**/usage.statistics.xml
13+
.idea/**/dictionaries
14+
.idea/**/shelf
15+
16+
# Generated files
17+
.idea/**/contentModel.xml
18+
19+
# Sensitive or high-churn files
20+
.idea/**/dataSources/
21+
.idea/**/dataSources.ids
22+
.idea/**/dataSources.local.xml
23+
.idea/**/sqlDataSources.xml
24+
.idea/**/dynamic.xml
25+
.idea/**/uiDesigner.xml
26+
.idea/**/dbnavigator.xml
27+
28+
# Gradle
29+
.idea/**/gradle.xml
30+
.idea/**/libraries
31+
32+
# Gradle and Maven with auto-import
33+
# When using Gradle or Maven with auto-import, you should exclude module files,
34+
# since they will be recreated, and may cause churn. Uncomment if using
35+
# auto-import.
36+
# .idea/modules.xml
37+
# .idea/*.iml
38+
# .idea/modules
39+
# *.iml
40+
# *.ipr
41+
42+
# CMake
43+
cmake-build-*/
44+
45+
# Mongo Explorer plugin
46+
.idea/**/mongoSettings.xml
47+
48+
# File-based project format
49+
*.iws
50+
51+
# IntelliJ
52+
out/
53+
54+
# mpeltonen/sbt-idea plugin
55+
.idea_modules/
56+
57+
# JIRA plugin
58+
atlassian-ide-plugin.xml
59+
60+
# Cursive Clojure plugin
61+
.idea/replstate.xml
62+
63+
# Crashlytics plugin (for Android Studio and IntelliJ)
64+
com_crashlytics_export_strings.xml
65+
crashlytics.properties
66+
crashlytics-build.properties
67+
fabric.properties
68+
69+
# Editor-based Rest Client
70+
.idea/httpRequests
71+
72+
# Android studio 3.1+ serialized cache file
73+
.idea/caches/build_file_checksums.ser
74+
75+
### Intellij Patch ###
76+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
77+
78+
# *.iml
79+
# modules.xml
80+
# .idea/misc.xml
81+
# *.ipr
82+
83+
# Sonarlint plugin
84+
.idea/**/sonarlint/
85+
86+
# SonarQube Plugin
87+
.idea/**/sonarIssues.xml
88+
89+
# Markdown Navigator plugin
90+
.idea/**/markdown-navigator.xml
91+
.idea/**/markdown-navigator/
92+
93+
### Java ###
594
# Compiled class file
695
*.class
796

@@ -15,6 +104,7 @@
15104
.mtj.tmp/
16105

17106
# Package Files #
107+
*.jar
18108
*.war
19109
*.nar
20110
*.ear
@@ -24,3 +114,50 @@
24114

25115
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
26116
hs_err_pid*
117+
118+
### Windows ###
119+
# Windows thumbnail cache files
120+
Thumbs.db
121+
Thumbs.db:encryptable
122+
ehthumbs.db
123+
ehthumbs_vista.db
124+
125+
# Dump file
126+
*.stackdump
127+
128+
# Folder config file
129+
[Dd]esktop.ini
130+
131+
# Recycle Bin used on file shares
132+
$RECYCLE.BIN/
133+
134+
# Windows Installer files
135+
*.cab
136+
*.msi
137+
*.msix
138+
*.msm
139+
*.msp
140+
141+
# Windows shortcuts
142+
*.lnk
143+
144+
### Gradle ###
145+
.gradle
146+
build/
147+
148+
# Ignore Gradle GUI config
149+
gradle-app.setting
150+
151+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
152+
!gradle-wrapper.jar
153+
154+
# Cache of project
155+
.gradletasknamecache
156+
157+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
158+
# gradle/wrapper/gradle-wrapper.properties
159+
160+
### Gradle Patch ###
161+
**/build/
162+
163+
# End of https://www.gitignore.io/api/java,gradle,windows,intellij

.idea/jarRepositories.xml

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,23 @@ This Library is capable of generating random names out of the characterusage of
44
The characterusage can be saved in .csv files and loaded later again.
55
With this Library you are able to write your own generation Algorithms quite easy.
66
## Version
7-
The Current version is **1.0**
7+
The Current version is **1.1**
88
## License
99
This project is licensed under the MIT License.
1010
Please consider reading the LICENSE file for more information.
1111
## Usage
1212
### Getting the JAR
1313
To get the latest version of the library, download the latest release in the release section.
14+
Or you can newly clone it from jitpack via:
15+
```groovy
16+
repositories {
17+
maven { url 'https://jitpack.io' }
18+
}
19+
20+
dependencies {
21+
implementation 'com.github.VirtCode:StringGenerator:1.1'
22+
}
23+
```
1424
### In Code
1525
Learn a specific style from a textfile:
1626
```java

build.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
plugins {
2+
id 'java'
3+
}
4+
5+
group 'ch.virt'
6+
version '1.1'
7+
8+
sourceCompatibility = 1.8
9+
10+
repositories {
11+
mavenCentral()
12+
}
13+
14+
dependencies {
15+
testCompile group: 'junit', name: 'junit', version: '4.12'
16+
}

builds/StringGenerator.jar

-17.6 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.jar

53.9 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.2.1-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)