campos20

Untitled

May 14th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. mvn archetype:generate -DgroupId=com.alexandrecampos -DartifactId=loja-de-roupas -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false
  2.  
  3.  
  4.  
  5. ### Servlet
  6. <dependency>
  7. <groupId>javax.servlet</groupId>
  8. <artifactId>javax.servlet-api</artifactId>
  9. <version>4.0.1</version>
  10. <scope>provided</scope>
  11. </dependency>
  12.  
  13.  
  14.  
  15. ### Bootstrap
  16. <head>
  17. <meta http-equiv="Content-Type" content="text/html;
  18. charset=UTF-8">
  19. <title>Loja de Roupas</title>
  20.  
  21. <meta name="viewport"
  22. content="width=device-width, initial-scale=1, shrink-to-fit=no">
  23. <link rel="stylesheet"
  24. href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
  25. integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
  26. crossorigin="anonymous">
  27. </head>
  28.  
  29.  
  30.  
  31. <!-- Dependencias bootstrap -->
  32. <script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
  33. integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
  34. crossorigin="anonymous"></script>
  35. <script
  36. src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
  37. integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
  38. crossorigin="anonymous"></script>
  39. <script
  40. src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
  41. integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
  42. crossorigin="anonymous"></script>
  43.  
  44.  
  45.  
  46.  
  47.  
  48. <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
  49. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  50. xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
  51. http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
  52. version="3.1">
  53.  
  54.  
  55.  
  56.  
  57. <dependency>
  58. <groupId>jstl</groupId>
  59. <artifactId>jstl</artifactId>
  60. <version>1.2</version>
  61. </dependency>
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68. <%@ page language="java" contentType="text/html; charset=UTF-8"
  69. pageEncoding="UTF-8"%>
  70. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  71.  
  72. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  73. "http://www.w3.org/TR/html4/loose.dtd">
  74. <html>
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81. https://bootstrapious.com/p/bootstrap-sidebar
  82.  
  83.  
  84.  
  85. git init
  86.  
  87. Nome do arquivo
  88. .gitignore
  89.  
  90. git remote add origin https://github.com/SEUUSUARIOAQUI/loja-de-roupas.git
  91.  
  92. git push --set-upstream origin master
Add Comment
Please, Sign In to add comment