/magstudentportal/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/magstudentportal/trunk

« back to all changes in this revision

Viewing changes to pom.xml

  • Committer: Gustav Hartvigsson
  • Date: 2017-08-23 07:33:51 UTC
  • mto: (15.1.9 magstudentportal-more-db)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: gustav.hartvigsson@gmail.com-20170823073351-el0kay8wsdejx9tj
* Added JUnit and javax.faces dependancies to the pom.xml.
* Added a ConfigBean, so that some settings and such
  that are used in many places be easier to handle.
* Made the page_header.xhtml template strings from the ConfigBean.
* Started to add tests.

* TODO; Figure out why the balls <h:head> ans <h:body> is not renderd.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
      <artifactId>postgresql</artifactId>
58
58
      <version>42.1.4</version>
59
59
    </dependency>
60
 
 
 
60
      
 
61
      <!-- https://mvnrepository.com/artifact/junit/junit -->
 
62
    <dependency>
 
63
        <groupId>junit</groupId>
 
64
        <artifactId>junit</artifactId>
 
65
        <version>4.12</version>
 
66
    </dependency>
 
67
    <!-- https://mvnrepository.com/artifact/javax.faces/javax.faces-api -->
 
68
    <dependency>
 
69
        <groupId>javax.faces</groupId>
 
70
        <artifactId>javax.faces-api</artifactId>
 
71
        <version>2.3</version>
 
72
        <scope>provided</scope>
 
73
    </dependency>
61
74
  </dependencies>
 
75
  
 
76
  
62
77
 
63
78
</project>