Skip to content

Commit 8923950

Browse files
committed
update name and documentation and PID
Signed-off-by: Stefan Bischof <[email protected]>
1 parent 5a49128 commit 8923950

File tree

4 files changed

+18
-12
lines changed

4 files changed

+18
-12
lines changed

api/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
</parent>
2222
<artifactId>org.eclipse.daanse.olap.api</artifactId>
2323
<packaging>jar</packaging>
24+
<name>Eclipse Daanse OLAP API</name>
25+
<description>Core API definitions for OLAP (Online Analytical Processing) operations including multidimensional data access, query execution, and cube manipulation interfaces. Provides the foundational contracts and service interfaces for the Daanse OLAP processing engine.</description>
2426

2527
<dependencies>
2628
<dependency>

common/pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
</parent>
2222
<artifactId>org.eclipse.daanse.olap.common</artifactId>
2323
<packaging>jar</packaging>
24+
<name>Eclipse Daanse OLAP Common</name>
25+
<description>Common utilities and shared components for OLAP (Online Analytical Processing) operations including caching mechanisms, configuration management, and utility classes. Provides foundational infrastructure used across the Daanse OLAP processing engine components.</description>
2426

2527
<dependencies>
2628

common/src/main/java/org/eclipse/daanse/olap/calc/base/compiler/BaseExpressionCompilerFactory.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@
2828

2929
@Component(scope = ServiceScope.SINGLETON, configurationPid = BaseExpressionCompilerFactory.PID, service = ExpressionCompilerFactory.class)
3030
public class BaseExpressionCompilerFactory implements ExpressionCompilerFactory {
31-
public static final String PID = "org.eclipse.daanse.olap.calc.base.compiler.BaseExpressionCompilerFactory";
31+
public static final String PID = "daanse.olap.calc.base.compiler.BaseExpressionCompilerFactory";
3232

33-
public BaseExpressionCompilerFactory() {
34-
this(Map.of());
35-
}
33+
public BaseExpressionCompilerFactory() {
34+
this(Map.of());
35+
}
3636

37-
@Activate
38-
public BaseExpressionCompilerFactory(Map<String, Object> map) {
39-
}
37+
@Activate
38+
public BaseExpressionCompilerFactory(Map<String, Object> map) {
39+
}
4040

41-
@Override
42-
public ExpressionCompiler createExpressionCompiler(Evaluator evaluator, Validator validator,
43-
List<ResultStyle> resultStyles) {
44-
return new BetterExpCompiler(evaluator, validator, resultStyles);
45-
}
41+
@Override
42+
public ExpressionCompiler createExpressionCompiler(Evaluator evaluator, Validator validator,
43+
List<ResultStyle> resultStyles) {
44+
return new BetterExpCompiler(evaluator, validator, resultStyles);
45+
}
4646

4747
}

pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
<artifactId>org.eclipse.daanse.olap</artifactId>
2525
<version>${revision}</version>
2626
<packaging>pom</packaging>
27+
<name>Eclipse Daanse OLAP Processing Engine</name>
28+
<description>Comprehensive OLAP (Online Analytical Processing) engine providing multidimensional data processing, cube operations, advanced query execution, intelligent caching, and aggregation management. Includes complete API framework for hierarchical navigation, measure calculations, access control, and XMLA protocol integration for enterprise analytical applications.</description>
2729

2830
<properties>
2931
<revision>0.0.1-SNAPSHOT</revision>

0 commit comments

Comments
 (0)