Skip to content

Commit 6e43d2b

Browse files
adding codebase skeleton
1 parent 02c714c commit 6e43d2b

File tree

4 files changed

+60
-1
lines changed

4 files changed

+60
-1
lines changed

saas-modules/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
<module>slack</module>
2323
<module>stripe</module>
2424
<module>twilio</module>
25+
<module>twilio-whatsapp</module>
2526
<module>twitter4j</module>
2627
</modules>
2728

@@ -40,4 +41,4 @@
4041
<start-class>com.baeldung.Main</start-class>
4142
</properties>
4243

43-
</project>
44+
</project>
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<artifactId>twilio-whatsapp</artifactId>
7+
<version>0.0.1</version>
8+
<packaging>jar</packaging>
9+
<name>twilio-whatsapp</name>
10+
<description>codebase to demonstrate sending whatsapp messages using Twilio</description>
11+
12+
<parent>
13+
<groupId>com.baeldung</groupId>
14+
<artifactId>saas-modules</artifactId>
15+
<version>1.0.0-SNAPSHOT</version>
16+
</parent>
17+
18+
<dependencies>
19+
<dependency>
20+
<groupId>org.springframework.boot</groupId>
21+
<artifactId>spring-boot-starter-web</artifactId>
22+
</dependency>
23+
<dependency>
24+
<groupId>org.springframework.boot</groupId>
25+
<artifactId>spring-boot-configuration-processor</artifactId>
26+
<optional>true</optional>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.projectlombok</groupId>
30+
<artifactId>lombok</artifactId>
31+
<optional>true</optional>
32+
</dependency>
33+
<dependency>
34+
<groupId>com.twilio.sdk</groupId>
35+
<artifactId>twilio</artifactId>
36+
<version>${twilio.version}</version>
37+
</dependency>
38+
</dependencies>
39+
40+
<properties>
41+
<java.version>17</java.version>
42+
<twilio.version>10.4.1</twilio.version>
43+
</properties>
44+
45+
</project>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.baeldung.twilio.whatsapp;
2+
3+
import org.springframework.boot.SpringApplication;
4+
import org.springframework.boot.autoconfigure.SpringBootApplication;
5+
6+
@SpringBootApplication
7+
public class Application {
8+
9+
public static void main(String[] args) {
10+
SpringApplication.run(Application.class, args);
11+
}
12+
13+
}

saas-modules/twilio-whatsapp/src/main/resources/application.yaml

Whitespace-only changes.

0 commit comments

Comments
 (0)