diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 7d047bd..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,8 +0,0 @@
-language: java
-sudo: false # faster builds
-
-before_install:
- - pip install --user codecov
-
-after_success:
- - codecov
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 0000000..c341b2a
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2022 Codecov
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
index 4520ae0..ad1db91 100644
--- a/README.md
+++ b/README.md
@@ -1,73 +1,17 @@
-Codecov Java Example
-====================
+# [Codecov](https://codecov.io) Java
+[](https://app.fossa.com/projects/git%2Bgithub.com%2Fcodecov%2Fexample-java?ref=badge_shield)
-| [https://codecov.io][1] | [@codecov][2] | [hello@codecov.io][3] |
-| ----------------------- | ------------- | --------------------- |
+This repository points to other example repositories on how Codecov can be integrated with a simple Java project.
-This repository serves as an **example** on how to use [Codecov Global][4] for Java.
+- [example-java-gradle](https://github.com/codecov/example-java-gradle)
+- [example-java-maven](https://github.com/codecov/example-java-maven)
+- [example-java-android](https://github.com/codecov/example-java-android)
-## Usage
+For more information, please see the links below.
-
-### Add Jacoco plugin
-```xml
-
- org.jacoco
- jacoco-maven-plugin
- 0.7.5.201505241946
-
-
-
- prepare-agent
-
-
-
- report
- test
-
- report
-
-
-
-
-```
-> For the [newest version check here](http://www.eclemma.org/jacoco/)
-
-
-# Travis CI
-
-Add to your `.travis.yml` file.
-```yml
-language:
- java
-
-before_script:
- - pip install --user codecov
-
-after_success:
- - codecov
-```
-
-> Another option is our [Bash uploader](https://github.com/codecov/codecov-bash)
-
-## Private Repos
-
-Add to your `.travis.yml` file.
-```yml
-env:
- global:
- - CODECOV_TOKEN=:uuid-repo-token
-
-before_script:
- - pip install --user codecov
-
-after_success:
- - codecov
-```
-
-View source and learn more about [Codecov Global Uploader][4]
-
-[1]: https://codecov.io/
-[2]: https://twitter.com/codecov
-[3]: mailto:hello@codecov.io
-[4]: https://github.com/codecov/codecov-python
+## Links
+- [Quick Start](https://docs.codecov.com/docs/quick-start)
+- [GitHub Tutorial](https://docs.codecov.com/docs/github-tutorial)
+- [Community Boards](https://community.codecov.io)
+- [Support](https://codecov.io/support)
+- [Documentation](https://docs.codecov.io)
diff --git a/pom.xml b/pom.xml
deleted file mode 100644
index 76e2998..0000000
--- a/pom.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
-
- 4.0.0
-
- org.jacoco
- org.jacoco.examples.maven.java
- 1.0-SNAPSHOT
- jar
-
- JaCoCo Maven plug-in example for Java project
- http://www.eclemma.org/jacoco
-
-
-
- junit
- junit
- 4.10
- test
-
-
-
-
- src/main/java
-
-
- org.jacoco
- jacoco-maven-plugin
- 0.5.8.201207111220
-
-
-
- prepare-agent
-
-
-
- report
- test
-
- report
-
-
-
-
-
-
-
-
diff --git a/src/main/java/org/jacoco/examples/maven/java/HelloWorld.java b/src/main/java/org/jacoco/examples/maven/java/HelloWorld.java
deleted file mode 100644
index a36abe7..0000000
--- a/src/main/java/org/jacoco/examples/maven/java/HelloWorld.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package org.jacoco.examples.maven.java;
-
-public class HelloWorld {
-
- public String getMessage(boolean bigger) {
- if (bigger) {
- return "Hello Universe!";
- } else {
- return "Hello World!";
- }
- }
-
-}
diff --git a/src/test/java/org/jacoco/examples/maven/java/HelloWorldTest.java b/src/test/java/org/jacoco/examples/maven/java/HelloWorldTest.java
deleted file mode 100644
index 2d17e16..0000000
--- a/src/test/java/org/jacoco/examples/maven/java/HelloWorldTest.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package org.jacoco.examples.maven.java;
-
-import static org.junit.Assert.*;
-
-import org.junit.Before;
-import org.junit.Test;
-
-public class HelloWorldTest {
-
- private HelloWorld subject;
-
- @Before
- public void setup() {
- subject = new HelloWorld();
- }
-
- @Test
- public void testGetMessage() {
- assertEquals("Hello World!", subject.getMessage(false));
- }
-
-}