Ignore:
Timestamp:
2020-10-23T17:41:18+13:00 (4 years ago)
Author:
davidb
Message:

Evolution of code away from Company model to one that uses RecordHashmap to represent the rows coming out of the JDBC database

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/model-sites-dev/cambridge-museum/collect/waikato-independent/pre-import/EditableDatabaseTable/pom.xml

    r34493 r34511  
    11<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">
    22  <modelVersion>4.0.0</modelVersion>
    3   <groupId>EditableDataTable</groupId>
    4   <artifactId>EditableDataTable</artifactId>
     3  <groupId>EditableDatabaseTable</groupId>
     4  <artifactId>EditableDatabaseTable</artifactId>
    55  <version>0.0.1-SNAPSHOT</version>
    66  <packaging>war</packaging>
    7   <name>EditableDataTable</name>
    8   <description>Maven compilable versoin of EditableDataTable Servlet</description>
     7  <name>EditableDatabaseTable</name>
     8  <description>Maven compilable versoin of EditableDatabaseTable Servlet</description>
    99
    1010  <dependencies>
     11    <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
     12    <dependency>
     13      <groupId>javax.servlet</groupId>
     14      <artifactId>javax.servlet-api</artifactId>
     15      <!-- 4.x is bleeding edge -->
     16      <!-- <version>4.0.1</version> -->
     17      <version>3.1.0</version>
     18      <scope>provided</scope>
     19    </dependency>
     20
     21    <!--
    1122    <dependency>
    1223      <groupId>javax.servlet</groupId>
     
    1526      <scope>provided</scope>
    1627    </dependency>
     28-->
     29
     30    <!-- https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc -->
     31    <dependency>
     32      <groupId>org.xerial</groupId>
     33      <artifactId>sqlite-jdbc</artifactId>
     34      <version>3.32.3.2</version>
     35    </dependency>
     36
     37   
    1738  </dependencies>
    1839 
     
    3253        <version>3.3</version>
    3354        <configuration>
    34           <source>1.6</source>
    35           <target>1.6</target>
     55          <source>1.8</source>
     56          <target>1.8</target>
    3657        </configuration>
    3758      </plugin>
Note: See TracChangeset for help on using the changeset viewer.