Commit 073df03c1d4c3e3826d67ce924869de277a39a47
1 parent
7c0b2f53
Exists in
master
Migra svn para git
Showing
8 changed files
with
155 additions
and
111 deletions
Show diff stats
.classpath
| ... | ... | @@ -1,36 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<classpath> | |
| 3 | - <classpathentry kind="src" output="target/classes" path="src/main/java"> | |
| 4 | - <attributes> | |
| 5 | - <attribute name="optional" value="true"/> | |
| 6 | - <attribute name="maven.pomderived" value="true"/> | |
| 7 | - </attributes> | |
| 8 | - </classpathentry> | |
| 9 | - <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"> | |
| 10 | - <attributes> | |
| 11 | - <attribute name="maven.pomderived" value="true"/> | |
| 12 | - </attributes> | |
| 13 | - </classpathentry> | |
| 14 | - <classpathentry kind="src" output="target/test-classes" path="src/test/java"> | |
| 15 | - <attributes> | |
| 16 | - <attribute name="optional" value="true"/> | |
| 17 | - <attribute name="maven.pomderived" value="true"/> | |
| 18 | - </attributes> | |
| 19 | - </classpathentry> | |
| 20 | - <classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"> | |
| 21 | - <attributes> | |
| 22 | - <attribute name="maven.pomderived" value="true"/> | |
| 23 | - </attributes> | |
| 24 | - </classpathentry> | |
| 25 | - <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.6.0_45"> | |
| 26 | - <attributes> | |
| 27 | - <attribute name="maven.pomderived" value="true"/> | |
| 28 | - </attributes> | |
| 29 | - </classpathentry> | |
| 30 | - <classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"> | |
| 31 | - <attributes> | |
| 32 | - <attribute name="maven.pomderived" value="true"/> | |
| 33 | - </attributes> | |
| 34 | - </classpathentry> | |
| 35 | - <classpathentry kind="output" path="target/classes"/> | |
| 36 | -</classpath> |
| ... | ... | @@ -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 | +config.asp | |
| 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,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 | + | ... | ... |
.project
| ... | ... | @@ -1,29 +0,0 @@ |
| 1 | -<?xml version="1.0" encoding="UTF-8"?> | |
| 2 | -<projectDescription> | |
| 3 | - <name>ans-commons-sei</name> | |
| 4 | - <comment></comment> | |
| 5 | - <projects> | |
| 6 | - </projects> | |
| 7 | - <buildSpec> | |
| 8 | - <buildCommand> | |
| 9 | - <name>org.eclipse.wst.common.project.facet.core.builder</name> | |
| 10 | - <arguments> | |
| 11 | - </arguments> | |
| 12 | - </buildCommand> | |
| 13 | - <buildCommand> | |
| 14 | - <name>org.eclipse.jdt.core.javabuilder</name> | |
| 15 | - <arguments> | |
| 16 | - </arguments> | |
| 17 | - </buildCommand> | |
| 18 | - <buildCommand> | |
| 19 | - <name>org.eclipse.m2e.core.maven2Builder</name> | |
| 20 | - <arguments> | |
| 21 | - </arguments> | |
| 22 | - </buildCommand> | |
| 23 | - </buildSpec> | |
| 24 | - <natures> | |
| 25 | - <nature>org.eclipse.jdt.core.javanature</nature> | |
| 26 | - <nature>org.eclipse.m2e.core.maven2Nature</nature> | |
| 27 | - <nature>org.eclipse.wst.common.project.facet.core.nature</nature> | |
| 28 | - </natures> | |
| 29 | -</projectDescription> |
.settings/org.eclipse.core.resources.prefs
| ... | ... | @@ -1,25 +0,0 @@ |
| 1 | -eclipse.preferences.version=1 | |
| 2 | -encoding//src/main/java/br/gov/ans/sei/modelo/Andamento.java=UTF-8 | |
| 3 | -encoding//src/main/java/br/gov/ans/sei/modelo/ArquivoExtensao.java=UTF-8 | |
| 4 | -encoding//src/main/java/br/gov/ans/sei/modelo/Assinatura.java=UTF-8 | |
| 5 | -encoding//src/main/java/br/gov/ans/sei/modelo/Assunto.java=UTF-8 | |
| 6 | -encoding//src/main/java/br/gov/ans/sei/modelo/Destinatario.java=UTF-8 | |
| 7 | -encoding//src/main/java/br/gov/ans/sei/modelo/Documento.java=UTF-8 | |
| 8 | -encoding//src/main/java/br/gov/ans/sei/modelo/Interessado.java=UTF-8 | |
| 9 | -encoding//src/main/java/br/gov/ans/sei/modelo/Observacao.java=UTF-8 | |
| 10 | -encoding//src/main/java/br/gov/ans/sei/modelo/Procedimento.java=UTF-8 | |
| 11 | -encoding//src/main/java/br/gov/ans/sei/modelo/ProcedimentoResumido.java=UTF-8 | |
| 12 | -encoding//src/main/java/br/gov/ans/sei/modelo/ProtocoloBloco.java=UTF-8 | |
| 13 | -encoding//src/main/java/br/gov/ans/sei/modelo/Publicacao.java=UTF-8 | |
| 14 | -encoding//src/main/java/br/gov/ans/sei/modelo/PublicacaoImprensaNacional.java=UTF-8 | |
| 15 | -encoding//src/main/java/br/gov/ans/sei/modelo/Remetente.java=UTF-8 | |
| 16 | -encoding//src/main/java/br/gov/ans/sei/modelo/RetornoConsultaBloco.java=UTF-8 | |
| 17 | -encoding//src/main/java/br/gov/ans/sei/modelo/RetornoConsultaDocumento.java=UTF-8 | |
| 18 | -encoding//src/main/java/br/gov/ans/sei/modelo/RetornoConsultaProcedimento.java=UTF-8 | |
| 19 | -encoding//src/main/java/br/gov/ans/sei/modelo/RetornoGeracaoProcedimento.java=UTF-8 | |
| 20 | -encoding//src/main/java/br/gov/ans/sei/modelo/RetornoInclusaoDocumento.java=UTF-8 | |
| 21 | -encoding//src/main/java/br/gov/ans/sei/modelo/Serie.java=UTF-8 | |
| 22 | -encoding//src/main/java/br/gov/ans/sei/modelo/TipoProcedimento.java=UTF-8 | |
| 23 | -encoding//src/main/java/br/gov/ans/sei/modelo/Unidade.java=UTF-8 | |
| 24 | -encoding//src/main/java/br/gov/ans/sei/modelo/UnidadeProcedimentoAberto.java=UTF-8 | |
| 25 | -encoding//src/main/java/br/gov/ans/sei/modelo/Usuario.java=UTF-8 |
.settings/org.eclipse.jdt.core.prefs
| ... | ... | @@ -1,13 +0,0 @@ |
| 1 | -eclipse.preferences.version=1 | |
| 2 | -org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | |
| 3 | -org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate | |
| 4 | -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 | |
| 5 | -org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve | |
| 6 | -org.eclipse.jdt.core.compiler.compliance=1.6 | |
| 7 | -org.eclipse.jdt.core.compiler.debug.lineNumber=generate | |
| 8 | -org.eclipse.jdt.core.compiler.debug.localVariable=generate | |
| 9 | -org.eclipse.jdt.core.compiler.debug.sourceFile=generate | |
| 10 | -org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | |
| 11 | -org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | |
| 12 | -org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning | |
| 13 | -org.eclipse.jdt.core.compiler.source=1.6 |
.settings/org.eclipse.m2e.core.prefs
.settings/org.eclipse.wst.common.project.facet.core.xml