this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Vanilla Maven project

+75
+39
.gitignore
··· 1 + target/ 2 + !.mvn/wrapper/maven-wrapper.jar 3 + !**/src/main/**/target/ 4 + !**/src/test/**/target/ 5 + .kotlin 6 + 7 + ### IntelliJ IDEA ### 8 + .idea/modules.xml 9 + .idea/jarRepositories.xml 10 + .idea/compiler.xml 11 + .idea/libraries/ 12 + *.iws 13 + *.iml 14 + *.ipr 15 + 16 + ### Eclipse ### 17 + .apt_generated 18 + .classpath 19 + .factorypath 20 + .project 21 + .settings 22 + .springBeans 23 + .sts4-cache 24 + 25 + ### NetBeans ### 26 + /nbproject/private/ 27 + /nbbuild/ 28 + /dist/ 29 + /nbdist/ 30 + /.nb-gradle/ 31 + build/ 32 + !**/src/main/**/build/ 33 + !**/src/test/**/build/ 34 + 35 + ### VS Code ### 36 + .vscode/ 37 + 38 + ### Mac OS ### 39 + .DS_Store
+2
README.md
··· 1 + # ATproto Java SDK 2 +
+17
pom.xml
··· 1 + <?xml version="1.0" encoding="UTF-8"?> 2 + <project xmlns="http://maven.apache.org/POM/4.0.0" 3 + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 5 + <modelVersion>4.0.0</modelVersion> 6 + 7 + <groupId>com.whartonlabs</groupId> 8 + <artifactId>atproto-java</artifactId> 9 + <version>1.0-SNAPSHOT</version> 10 + 11 + <properties> 12 + <maven.compiler.source>25</maven.compiler.source> 13 + <maven.compiler.target>25</maven.compiler.target> 14 + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 15 + </properties> 16 + 17 + </project>
+17
src/main/java/com/whartonlabs/atproto/Main.java
··· 1 + package com.whartonlabs.atproto; 2 + 3 + //TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or 4 + // click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter. 5 + public class Main { 6 + static void main() { 7 + //TIP Press <shortcut actionId="ShowIntentionActions"/> with your caret at the highlighted text 8 + // to see how IntelliJ IDEA suggests fixing it. 9 + IO.println(String.format("Hello and welcome!")); 10 + 11 + for (int i = 1; i <= 5; i++) { 12 + //TIP Press <shortcut actionId="Debug"/> to start debugging your code. We have set one <icon src="AllIcons.Debugger.Db_set_breakpoint"/> breakpoint 13 + // for you, but you can always add more by pressing <shortcut actionId="ToggleLineBreakpoint"/>. 14 + IO.println("i = " + i); 15 + } 16 + } 17 + }