Spaces:
Sleeping
Sleeping
| <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <parent> | |
| <groupId>org.springframework.boot</groupId> | |
| <artifactId>spring-boot-starter-parent</artifactId> | |
| <version>3.5.7</version> | |
| <relativePath/> <!-- lookup parent from repository --> | |
| </parent> | |
| <groupId>com.rods</groupId> | |
| <artifactId>BacktestingStrategies</artifactId> | |
| <version>0.0.1-SNAPSHOT</version> | |
| <name>BacktestingStrategies</name> | |
| <description>BacktestingStrategies</description> | |
| <url/> | |
| <licenses> | |
| <license/> | |
| </licenses> | |
| <developers> | |
| <developer/> | |
| </developers> | |
| <scm> | |
| <connection/> | |
| <developerConnection/> | |
| <tag/> | |
| <url/> | |
| </scm> | |
| <properties> | |
| <java.version>21</java.version> | |
| </properties> | |
| <!-- adding the jit repo for discovering the java implementation repository for alpha-vantage --> | |
| <!-- Replaced AlphaVantage with Yahoo Finance --> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.springframework.boot</groupId> | |
| <artifactId>spring-boot-starter-data-jpa</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework.boot</groupId> | |
| <artifactId>spring-boot-starter-web</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework.boot</groupId> | |
| <artifactId>spring-boot-starter-test</artifactId> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.projectlombok</groupId> | |
| <artifactId>lombok</artifactId> | |
| <optional>true</optional> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.mysql</groupId> | |
| <artifactId>mysql-connector-j</artifactId> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <!-- Yahoo Finance API - no API key required, no rate limits --> | |
| <dependency> | |
| <groupId>com.yahoofinance-api</groupId> | |
| <artifactId>YahooFinanceAPI</artifactId> | |
| <version>3.17.0</version> | |
| </dependency> | |
| <!-- Jackson for JSON parsing of ticker data --> | |
| <dependency> | |
| <groupId>com.fasterxml.jackson.core</groupId> | |
| <artifactId>jackson-databind</artifactId> | |
| </dependency> | |
| <!-- Security & JWT Dependencies --> | |
| <dependency> | |
| <groupId>org.springframework.boot</groupId> | |
| <artifactId>spring-boot-starter-security</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.springframework.boot</groupId> | |
| <artifactId>spring-boot-starter-validation</artifactId> | |
| </dependency> | |
| <dependency> | |
| <groupId>io.jsonwebtoken</groupId> | |
| <artifactId>jjwt-api</artifactId> | |
| <version>0.11.5</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>io.jsonwebtoken</groupId> | |
| <artifactId>jjwt-impl</artifactId> | |
| <version>0.11.5</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>io.jsonwebtoken</groupId> | |
| <artifactId>jjwt-jackson</artifactId> | |
| <version>0.11.5</version> | |
| <scope>runtime</scope> | |
| </dependency> | |
| <!-- Adding postgres dependency for deployment --> | |
| <dependency> | |
| <groupId>org.postgresql</groupId> | |
| <artifactId>postgresql</artifactId> | |
| <scope>runtime</scope> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.springframework.boot</groupId> | |
| <artifactId>spring-boot-maven-plugin</artifactId> | |
| <configuration> | |
| <excludes> | |
| <exclude> | |
| <groupId>org.projectlombok</groupId> | |
| <artifactId>lombok</artifactId> | |
| </exclude> | |
| </excludes> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <configuration> | |
| <source>21</source> | |
| <target>21</target> | |
| <annotationProcessorPaths> | |
| <path> | |
| <groupId>org.projectlombok</groupId> | |
| <artifactId>lombok</artifactId> | |
| <version>1.18.42</version> | |
| </path> | |
| </annotationProcessorPaths> | |
| </configuration> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> | |