This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # fluigDevService | |
| # | |
| # description: service que controla e facilita a inicialiação e encerramento do Fluig, juntamente com RealTime e Indexer | |
| DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null && pwd)" | |
| case $1 in | |
| start) | |
| bash $DIR/fluigService.sh stop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"> | |
| <persistence-unit name="default" transaction-type="RESOURCE_LOCAL"> | |
| <provider>org.hibernate.ejb.HibernatePersistence</provider> | |
| <non-jta-data-source>java:/comp/env/jdbc/MysqlDS</non-jta-data-source> | |
| <properties> | |
| <property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect" /> | |
| <property name="hibernate.show_sql" value="true" /> | |
| <property name="hibernate.hbm2ddl.auto" value="update" /> | |
| <property name="hibernate.connection.charSet" value="UTF-8" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xmlns:web="http://java.sun.com/xml/ns/javaee" | |
| xmlns="http://java.sun.com/xml/ns/javaee" | |
| xsi:schemaLocation="http://java.sun.com/xml/ns/javaee | |
| http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0"> | |
| <display-name>SiPFC</display-name> | |
| <context-param> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| br.com.caelum.vraptor.jpa.persistenceunit=local | |
| vraptor.simplemail.main.server = smtp.gmail.com | |
| vraptor.simplemail.main.port = 587 | |
| vraptor.simplemail.main.tls = true | |
| vraptor.simplemail.main.from = dfranco.comp@gmail.com | |
| vraptor.simplemail.main.username = dfranco.comp | |
| vraptor.simplemail.main.password = dfc30alg21 | |
| vraptor.simplemail.main.from.name = SisPFC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| . | |
| ├── annotations | |
| │ ├── Permission.java | |
| │ └── Public.java | |
| ├── ArquivoComponente.java | |
| ├── controller | |
| │ ├── AgendaController.java | |
| │ ├── AlunoController.java | |
| │ ├── AppController.java | |
| │ ├── ApresentacaoController.java |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| src/main/resources/ | |
| ├── Aceite.odt | |
| ├── aceite_v2.pdf | |
| ├── Ata_Defesa.odt | |
| ├── Ata_Defesa_PFC1.odt | |
| ├── Ata_Reprovacao.odt | |
| ├── client_secrets.json | |
| ├── Dec_Avaliador_TCC.odt | |
| ├── Dec_Orientador_TCC.odt | |
| ├── development.properties |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [INFO] Scanning for projects... | |
| [INFO] | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] Building Sistema_SisPFC 2.0.1 | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] BUILD FAILURE | |
| [INFO] ------------------------------------------------------------------------ | |
| [INFO] Total time: 0.157 s | |
| [INFO] Finished at: 2018-02-24T14:06:03-03:00 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| src/ | |
| └── main | |
| ├── java | |
| │ ├── net | |
| │ │ └── jataiufg | |
| │ │ └── sispfc | |
| │ │ ├── annotations | |
| │ │ ├── controller | |
| │ │ ├── converter | |
| │ │ ├── dao |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>net.jataiufg.sispfc</groupId> | |
| <artifactId>Sistema_SisPFC</artifactId> | |
| <version>2.0.1</version> | |
| <packaging>war</packaging> | |
| <description>Sistema de gestão de projeto final de Curso</description> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| declare NAME | |
| declare AGE | |
| declare TAX | |
| read -p "Type the name" NAME | |
| read -p "Type the age" AGE | |
| read -p "Type the tax" TEX | |
| printf "Name: %s" $NAME # %s for strings | |
| printf "Age: %d" $AGE #%d for integers |
NewerOlder