Commit a507e2f12e4a2cf464fedd704cbece101b595a2e

Authored by Joao Vitorino
1 parent b759774e
Exists in master

Primeiro commit 2018050220000667

Showing 2 changed files with 155 additions and 0 deletions   Show diff stats
.gitignore 0 → 100755
... ... @@ -0,0 +1,132 @@
  1 +#---------------------------------------#
  2 +# Project Ignores #
  3 +#---------------------------------------#
  4 +
  5 +# Maven
  6 +target/
  7 +pom.xml.tag
  8 +pom.xml.releaseBackup
  9 +pom.xml.versionsBackup
  10 +pom.xml.next
  11 +release.properties
  12 +dependency-reduced-pom.xml
  13 +buildNumber.properties
  14 +.mvn/timing.properties
  15 +
  16 +!/.mvn/wrapper/maven-wrapper.jar
  17 +
  18 +# Ant
  19 +build/
  20 +dist/
  21 +bin/
  22 +
  23 +# Compiled class file
  24 +*.class
  25 +
  26 +# Mobile Tools for Java (J2ME)
  27 +.mtj.tmp/
  28 +
  29 +# Package Files
  30 +*.jar
  31 +*.war
  32 +*.ear
  33 +*.zip
  34 +*.tar.gz
  35 +*.rar
  36 +
  37 +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  38 +hs_err_pid*
  39 +
  40 +# misc
  41 +*.log
  42 +log/
  43 +logs/
  44 +
  45 +
  46 +#---------------------------------------#
  47 +# IDEs & Editors Ignores #
  48 +#---------------------------------------#
  49 +
  50 +# Sublime Text
  51 +/*.sublime*
  52 +.sublime-gulp.cache
  53 +
  54 +# VS Code
  55 +/.vscode
  56 +
  57 +# JetBrains IDEs
  58 +.idea/
  59 +*.iml
  60 +
  61 +# Eclipse
  62 +.project
  63 +.classpath
  64 +.settings
  65 +.tern-project
  66 +
  67 +# Netbeans
  68 +nbactions*.xml
  69 +nb-configuration*.xml
  70 +
  71 +# BlueJ
  72 +*.ctxt
  73 +
  74 +
  75 +#---------------------------------------#
  76 +# General Ignores #
  77 +#---------------------------------------#
  78 +
  79 +*~
  80 +*.orig
  81 +.vagrant
  82 +
  83 +
  84 +#---------------------------------------#
  85 +# Linux Ignores #
  86 +#---------------------------------------#
  87 +
  88 +# KDE directory preferences
  89 +.directory
  90 +
  91 +
  92 +#---------------------------------------#
  93 +# OSX Ignores #
  94 +#---------------------------------------#
  95 +
  96 +.DS_Store
  97 +.AppleDouble
  98 +.LSOverride
  99 +.localized
  100 +
  101 +# Icon must end with two \r
  102 +Icon
  103 +
  104 +
  105 +# Thumbnails
  106 +._*
  107 +
  108 +# Files that might appear on external disk
  109 +.Spotlight-V100
  110 +.Trashes
  111 +
  112 +# Directories potentially created on remote AFP share
  113 +.AppleDB
  114 +.AppleDesktop
  115 +Network Trash Folder
  116 +Temporary Items
  117 +.apdisk
  118 +
  119 +
  120 +#---------------------------------------#
  121 +# Windows Ignores #
  122 +#---------------------------------------#
  123 +
  124 +# Windows image file caches
  125 +Thumbs.db
  126 +ehthumbs.db
  127 +
  128 +# Folder config file
  129 +Desktop.ini
  130 +
  131 +# Recycle Bin used on file shares
  132 +$RECYCLE.BIN/
0 133 \ No newline at end of file
... ...
.gitmessage 0 → 100755
... ... @@ -0,0 +1,23 @@
  1 +# Faça um breve resumo das alterações
  2 +# Devemos escrever nosso comentário de forma a completar a frase abaixo, utilizando o verbo no presente.
  3 +# Esse commit: <Seu resumo>
  4 +#
  5 +# Exemplos:
  6 +# Corrige erro de sessão
  7 +# Adiciona funcionalidade de cadastro de livros
  8 +# |<---- Use no máximo 50 caracteres ---->|
  9 +
  10 +
  11 +#
  12 +# Descreva o que foi realizado no commit.
  13 +#
  14 +# Procure responder as três perguntas: "O que?", "Como?" e "Porquê?"
  15 +# |<--- Tente limitar as linhas para terem no maximo 72 caracteres --->|
  16 +
  17 +
  18 +#
  19 +# Número do ticket da ferramenta de controle utilizada.
  20 +# Exemplo:
  21 +# OTRS - 2017030220001019
  22 +# OS - 050/2016
  23 +
... ...