Commit 640957ff authored by cherrylzhao's avatar cherrylzhao
Browse files

add dependencies for broadcast-table example.

parent a56fa8cb
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -26,4 +26,16 @@
        <version>4.0.0-RC1-SNAPSHOT</version>
    </parent>
    <artifactId>broadcast-table-raw-jdbc-example</artifactId>
    
    <dependencies>
        <dependency>
            <groupId>org.apache.shardingsphere.example</groupId>
            <artifactId>repository-jdbc</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.shardingsphere</groupId>
            <artifactId>sharding-jdbc-core</artifactId>
        </dependency>
    </dependencies>
</project>
+21 −1
Original line number Diff line number Diff line
@@ -26,4 +26,24 @@
        <version>4.0.0-RC1-SNAPSHOT</version>
    </parent>
    <artifactId>broadcast-table-spring-boot-example</artifactId>
    
    <dependencies>
        <dependency>
            <groupId>org.apache.shardingsphere.example</groupId>
            <artifactId>repository-jpa</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.shardingsphere</groupId>
            <artifactId>sharding-jdbc-spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
        </dependency>
    </dependencies>
</project>
+27 −0
Original line number Diff line number Diff line
@@ -26,4 +26,31 @@
        <version>4.0.0-RC1-SNAPSHOT</version>
    </parent>
    <artifactId>broadcast-table-spring-namespace-example</artifactId>
    
    <dependencies>
        <dependency>
            <groupId>org.apache.shardingsphere.example</groupId>
            <artifactId>repository-mybatis</artifactId>
            <version>${project.version}</version>
        </dependency>
        
        <dependency>
            <groupId>org.apache.shardingsphere</groupId>
            <artifactId>sharding-jdbc-spring-namespace</artifactId>
        </dependency>
        
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
        </dependency>
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis-spring</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
        </dependency>
    </dependencies>
</project>