contract-testing-demo

pact and java contract testing with micro-commits

git clone https://9o.is/git/contract-testing-demo.git

.gitignore

(1866B)


      1 # Created by https://www.gitignore.io/api/java,code,gradle,eclipse,intellij
      2 # Edit at https://www.gitignore.io/?templates=java,code,gradle,eclipse,intellij
      3 
      4 ### Code ###
      5 .vscode/*
      6 
      7 ### Eclipse ###
      8 .metadata
      9 bin/
     10 tmp/
     11 *.tmp
     12 *.bak
     13 *.swp
     14 *~.nib
     15 local.properties
     16 .settings/
     17 .loadpath
     18 .recommenders
     19 
     20 # External tool builders
     21 .externalToolBuilders/
     22 
     23 # Locally stored "Eclipse launch configurations"
     24 *.launch
     25 
     26 # PyDev specific (Python IDE for Eclipse)
     27 *.pydevproject
     28 
     29 # CDT-specific (C/C++ Development Tooling)
     30 .cproject
     31 
     32 # CDT- autotools
     33 .autotools
     34 
     35 # Java annotation processor (APT)
     36 .factorypath
     37 
     38 # PDT-specific (PHP Development Tools)
     39 .buildpath
     40 
     41 # sbteclipse plugin
     42 .target
     43 
     44 # Tern plugin
     45 .tern-project
     46 
     47 # TeXlipse plugin
     48 .texlipse
     49 
     50 # STS (Spring Tool Suite)
     51 .springBeans
     52 
     53 # Code Recommenders
     54 .recommenders/
     55 
     56 # Annotation Processing
     57 .apt_generated/
     58 
     59 # Scala IDE specific (Scala & Java development for Eclipse)
     60 .cache-main
     61 .scala_dependencies
     62 .worksheet
     63 
     64 ### Eclipse Patch ###
     65 # Eclipse Core
     66 .project
     67 
     68 # JDT-specific (Eclipse Java Development Tools)
     69 .classpath
     70 
     71 # Annotation Processing
     72 .apt_generated
     73 
     74 .sts4-cache/
     75 
     76 ### Intellij ###
     77 .idea/
     78 *.iml
     79 
     80 ### Java ###
     81 # Compiled class file
     82 *.class
     83 
     84 # Log file
     85 *.log
     86 
     87 # BlueJ files
     88 *.ctxt
     89 
     90 # Mobile Tools for Java (J2ME)
     91 .mtj.tmp/
     92 
     93 # Package Files #
     94 *.jar
     95 *.war
     96 *.nar
     97 *.ear
     98 *.zip
     99 *.tar.gz
    100 *.rar
    101 
    102 # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
    103 hs_err_pid*
    104 
    105 ### Gradle ###
    106 .gradle
    107 build/
    108 out/
    109 
    110 # Ignore Gradle GUI config
    111 gradle-app.setting
    112 
    113 # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
    114 !gradle-wrapper.jar
    115 
    116 # Cache of project
    117 .gradletasknamecache
    118 
    119 # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
    120 # gradle/wrapper/gradle-wrapper.properties
    121 
    122 ### Gradle Patch ###
    123 **/build/
    124 
    125 # End of https://www.gitignore.io/api/java,code,gradle,eclipse,intellij