Commit 96b5c48c62ebb685ed03ba48f23e89f6dc692de8
1 parent
20c251c2
Exists in
master
Atualizado arquivo de build
Showing
1 changed file
with
11 additions
and
4 deletions
Show diff stats
ieducar/misc/build.xml
... | ... | @@ -33,9 +33,9 @@ |
33 | 33 | |
34 | 34 | <!-- Configuração de acesso ao banco de dados para o DbDeployTask --> |
35 | 35 | <property name="project.conf.dbdeploy.hostname" value="localhost" /> |
36 | - <property name="project.conf.dbdeploy.username" value="ieducaruser" /> | |
37 | - <property name="project.conf.dbdeploy.password" value="ieducar" /> | |
38 | - <property name="project.conf.dbdeploy.dbname" value="merge2" /> | |
36 | + <property name="project.conf.dbdeploy.username" value="ieducar" /> | |
37 | + <property name="project.conf.dbdeploy.dbname" value="ieducar" /> | |
38 | + <property name="project.conf.dbdeploy.password" value="" /> | |
39 | 39 | <property name="project.conf.dbdeploy.psql_path" value="" /> |
40 | 40 | |
41 | 41 | <!-- Variáveis para substituição de tokens --> |
... | ... | @@ -89,9 +89,16 @@ |
89 | 89 | <fileset dir="${project.basedir}" id="allfiles"> |
90 | 90 | <include name="**" /> |
91 | 91 | <exclude name=".svn/" /> |
92 | + <exclude name=".git/" /> | |
93 | + <exclude name=".settings/" /> | |
94 | + <exclude name=".gitignore" /> | |
95 | + <exclude name=".gitmodules" /> | |
96 | + <exclude name=".project" /> | |
97 | + <exclude name=".buildpath" /> | |
98 | + <exclude name=".DS_STORE" /> | |
99 | + <exclude name="tests/" /> | |
92 | 100 | <exclude name="**/build.xml" /> |
93 | 101 | <exclude name="**/coverage.db" /> |
94 | - <!--<exclude name="tests/" />--> | |
95 | 102 | <exclude name="spikes/" /> |
96 | 103 | <exclude name="deploy/" /> |
97 | 104 | <exclude name="misc/database/deltas/**" /> | ... | ... |