Skip to content

Commit 4c8fadb

Browse files
committed
Initial commit
1 parent f2eb17e commit 4c8fadb

18 files changed

+876
-1
lines changed

.gitignore

Lines changed: 157 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
# Created by https://www.gitignore.io
2+
3+
### Java ###
4+
*.class
5+
6+
# Mobile Tools for Java (J2ME)
7+
.mtj.tmp/
8+
9+
# Package Files #
10+
*.jar
11+
*.war
12+
*.ear
13+
14+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
15+
hs_err_pid*
16+
17+
18+
### JetBrains ###
19+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
20+
21+
*.iml
22+
23+
## Directory-based project format:
24+
.idea/
25+
# if you remove the above rule, at least ignore the following:
26+
27+
# User-specific stuff:
28+
# .idea/workspace.xml
29+
# .idea/tasks.xml
30+
# .idea/dictionaries
31+
32+
# Sensitive or high-churn files:
33+
# .idea/dataSources.ids
34+
# .idea/dataSources.xml
35+
# .idea/sqlDataSources.xml
36+
# .idea/dynamic.xml
37+
# .idea/uiDesigner.xml
38+
39+
# Gradle:
40+
# .idea/gradle.xml
41+
# .idea/libraries
42+
43+
# Mongo Explorer plugin:
44+
# .idea/mongoSettings.xml
45+
46+
## File-based project format:
47+
*.ipr
48+
*.iws
49+
50+
## Plugin-specific files:
51+
52+
# IntelliJ
53+
out/
54+
55+
# mpeltonen/sbt-idea plugin
56+
.idea_modules/
57+
58+
# JIRA plugin
59+
atlassian-ide-plugin.xml
60+
61+
# Crashlytics plugin (for Android Studio and IntelliJ)
62+
com_crashlytics_export_strings.xml
63+
crashlytics.properties
64+
crashlytics-build.properties
65+
66+
67+
### Maven ###
68+
target/
69+
pom.xml.tag
70+
pom.xml.releaseBackup
71+
pom.xml.versionsBackup
72+
pom.xml.next
73+
release.properties
74+
75+
76+
### Eclipse ###
77+
*.pydevproject
78+
.metadata
79+
.gradle
80+
bin/
81+
tmp/
82+
*.tmp
83+
*.bak
84+
*.swp
85+
*~.nib
86+
local.properties
87+
.settings/
88+
.loadpath
89+
90+
# Eclipse Core
91+
.project
92+
93+
# External tool builders
94+
.externalToolBuilders/
95+
96+
# Locally stored "Eclipse launch configurations"
97+
*.launch
98+
99+
# CDT-specific
100+
.cproject
101+
102+
# JDT-specific (Eclipse Java Development Tools)
103+
.classpath
104+
105+
# PDT-specific
106+
.buildpath
107+
108+
# sbteclipse plugin
109+
.target
110+
111+
# TeXlipse plugin
112+
.texlipse
113+
114+
115+
### Windows ###
116+
# Windows image file caches
117+
Thumbs.db
118+
ehthumbs.db
119+
120+
# Folder config file
121+
Desktop.ini
122+
123+
# Recycle Bin used on file shares
124+
$RECYCLE.BIN/
125+
126+
# Windows Installer files
127+
*.cab
128+
*.msi
129+
*.msm
130+
*.msp
131+
132+
# Windows shortcuts
133+
*.lnk
134+
135+
136+
### OSX ###
137+
.DS_Store
138+
.AppleDouble
139+
.LSOverride
140+
141+
# Icon must end with two \r
142+
Icon
143+
144+
145+
# Thumbnails
146+
._*
147+
148+
# Files that might appear on external disk
149+
.Spotlight-V100
150+
.Trashes
151+
152+
# Directories potentially created on remote AFP share
153+
.AppleDB
154+
.AppleDesktop
155+
Network Trash Folder
156+
Temporary Items
157+
.apdisk

README.md

Lines changed: 56 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,56 @@
1-
# herald
1+
2+
# Herald
3+
4+
5+
## Setup
6+
7+
Maven:
8+
```xml
9+
<repository>
10+
<id>jitpack.io</id>
11+
<url>https://jitpack.io</url>
12+
</repository>
13+
14+
<dependency>
15+
<groupId>com.github.vbauer</groupId>
16+
<artifactId>herald</artifactId>
17+
<version>1.0.0</version>
18+
</dependency>
19+
```
20+
21+
Gradle:
22+
```groovy
23+
repositories {
24+
maven {
25+
url "https://jitpack.io"
26+
}
27+
}
28+
29+
dependencies {
30+
compile 'com.github.vbauer:herald:1.0.0'
31+
}
32+
```
33+
34+
35+
## Might also like
36+
37+
* [houdini](https://github.com/vbauer/houdini) - Type conversion system for Spring framework.
38+
* [commons-vfs2-cifs](https://github.com/vbauer/commons-vfs2-cifs) - SMB/CIFS provider for Commons VFS.
39+
* [avconv4java](https://github.com/vbauer/avconv4java) - Java interface to avconv tool.
40+
41+
42+
## License
43+
44+
Copyright 2015 Vladislav Bauer
45+
46+
Licensed under the Apache License, Version 2.0 (the "License");
47+
you may not use this file except in compliance with the License.
48+
You may obtain a copy of the License at
49+
50+
http://www.apache.org/licenses/LICENSE-2.0
51+
52+
Unless required by applicable law or agreed to in writing, software
53+
distributed under the License is distributed on an "AS IS" BASIS,
54+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
55+
See the License for the specific language governing permissions and
56+
limitations under the License.

0 commit comments

Comments
 (0)