structure-function
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>cn.structured</groupId>
<artifactId>structure-function</artifactId>
<version>1.0.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cn.structured</groupId>
<artifactId>structure-dependencies</artifactId>
<version>1.2.4</version>
</parent>
<groupId>cn.structured</groupId>
<artifactId>structure-function</artifactId>
<version>1.0.2</version>
<packaging>pom</packaging>
<name>structure-function</name>
<description>函数编程</description>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<modules>
<module>structure-function-api</module>
<module>structure-function-core</module>
<module>structure-function-context</module>
<module>structure-function-load</module>
</modules>
<properties>
<spring-boot.version>2.7.18</spring-boot.version>
<revision>1.0.2</revision>
<lua.version>3.0.1</lua.version>
<python-standalone.version>2.7.3rc1</python-standalone.version>
<python.version>2.7.0</python.version>
<structure.version>1.2.4</structure.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>${hutool.version}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-parent</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>cn.structured</groupId>
<artifactId>structure-boot-parent</artifactId>
<version>${structure.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>cn.structured</groupId>
<artifactId>structure-function-api</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>cn.structured</groupId>
<artifactId>structure-function-context</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>cn.structured</groupId>
<artifactId>structure-function-load</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>cn.structured</groupId>
<artifactId>structure-function-core</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>org.python</groupId>
<artifactId>jython</artifactId>
<version>${python.version}</version>
</dependency>
<dependency>
<groupId>org.python</groupId>
<artifactId>jython-standalone</artifactId>
<version>${python-standalone.version}</version>
</dependency>
<dependency>
<groupId>org.luaj</groupId>
<artifactId>luaj-jse</artifactId>
<version>${lua.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>