Skip to content

Commit a70140d

Browse files
author
Mark Whitaker
committed
Add project files
1 parent 8734728 commit a70140d

26 files changed

+1262
-1
lines changed

.circleci/config.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Java Gradle CircleCI 2.0 configuration file
2+
#
3+
# Check https://circleci.com/docs/2.0/language-java/ for more details
4+
#
5+
6+
aliases:
7+
- &setup-environment
8+
docker:
9+
- image: circleci/openjdk:8u222-jdk
10+
working_directory: ~/repo
11+
environment: # Customize the JVM maximum heap limit
12+
JVM_OPTS: -Xmx3200m
13+
TERM: dumb
14+
15+
- &load-cache
16+
restore_cache:
17+
keys:
18+
- v1-dependencies-{{ checksum "build.gradle" }}
19+
# fallback to using the latest cache if no exact match is found
20+
- v1-dependencies-
21+
22+
- &save-cache
23+
save_cache:
24+
paths:
25+
- ~/.gradle
26+
key: v1-dependencies-{{ checksum "build.gradle" }}
27+
28+
version: 2
29+
jobs:
30+
build:
31+
<<: *setup-environment
32+
steps:
33+
- checkout
34+
- *load-cache
35+
- run: gradle dependencies
36+
- *save-cache
37+
# Build the library and run tests
38+
- run: gradle build
39+
40+
workflows:
41+
version: 2
42+
build-and-test:
43+
jobs:
44+
- build:
45+
filters:
46+
tags:
47+
only: /.*/

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "gradle" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "daily"

.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
2+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
3+
4+
# Ignore the whole .idea folder
5+
.idea
6+
7+
# Gradle:
8+
.gradle
9+
10+
# CMake
11+
cmake-build-debug/
12+
13+
## File-based project format:
14+
*.iws
15+
16+
## Plugin-specific files:
17+
18+
# IntelliJ
19+
out/
20+
21+
# Maven
22+
target/
23+
24+
# Gradle
25+
build/

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
MimeTypes.Java
1+
![icon](artwork/MimeTypes-icon-100.png)
2+
3+
# MimeTypes.Java [![CircleCI](https://circleci.com/gh/markwhitaker/MimeTypes.Java.svg?style=shield)](https://circleci.com/gh/markwhitaker/MimeTypes.Java) [![](https://jitpack.io/v/markwhitaker/MimeTypes.Java.svg)](https://jitpack.io/#markwhitaker/MimeTypes.Java)
4+
5+
6+
A structured collection of MIME type constants to use in your Java projects.
7+
8+
Pull requests welcome!

artwork/MimeTypes-icon-100.png

2.76 KB
Loading

artwork/MimeTypes-icon-128.png

2.98 KB
Loading

artwork/MimeTypes-icon-200.png

3.65 KB
Loading

artwork/MimeTypes-icon-32.png

1.97 KB
Loading

artwork/MimeTypes-icon-50.png

2.24 KB
Loading

artwork/MimeTypes-icon-500.png

7.33 KB
Loading

0 commit comments

Comments
 (0)